:root {
    --colorPrimary: #000;
    --colorSecondary: #fff;
    --colorTertiary: #fdd324;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter';
    color: var(--colorSecondary);
}
html {
    font-size: 62.5%;
}
body{
    background-color: var(--colorPrimary);
    width: 100%;
    display: flex;
    flex-direction: column;
}

main {
    padding: 7vmax 5vw;
    width: 100%;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 5fr 6fr;
}
main .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: max(4vh, 3vw);
    align-items: start;
}
main h1 {
    max-width: min(90%, 85vw);
    font-size: max(6vh, 4.8vw);
    color: var(--colorSecondary);
    font-weight: 700;
    line-height: 1.7ch;
}
main p {
    max-width: min(90%, 85vw);
    line-height: 1.7ch;
    font-size: max(1.7vh, 1.4vw);
    font-weight: 400;
    color: rgba(150, 150, 150);
}
main span {
    max-width: min(90%, 85vw);
    font-size: max(1.7vh, 1.4vw);
    font-weight: 700;
}

main .right {
    display: flex;
    justify-content: end;
    align-items: center;
}
main .right .main-image {
    aspect-ratio: 1.2/1.0;
    width: 80%;
    height: auto;
    background-image: url(../res/store-out.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}

@media only screen and (max-width: 650px){
    main {
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: center;
    }
    main .left {
        justify-content: center;
        align-items: center;
    } 
    main .left > * {
        text-align: center;
    }
    main .right {
        justify-content: center;
        align-items: center;
    }
}
    