@import url(reset.css);
@import url(variables.css);
@import url(order-summary-component.css);

* {
    box-sizing: border-box;
}

body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 40px;
    background-color: var(--backgroundColorBody);

    line-height: 1.6;
    font-size: 16px;
    font-family: var(--fontBase);
    color: var(--colorText);
    font-weight: 700;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
}

.picture-background-body, .picture-background-body img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: -1;
}

.title {
    color: var(--colorTitle);
    font-weight: var(--veryStrong);
    font-size: clamp(1.5rem, calc(8.5vw - 1.7rem), 1.9rem);
}

.strong {
    font-weight: var(--veryStrong);
}

/* FOOTER */

footer {
    position: relative;
    bottom: -35px;
}

footer a {
    color: var(--colorButton);
    transition: color 0.3s ease-in;
}

footer a:hover {
    color: var(--colorHover);
}