/** {*/
/*    border: 1px solid red;*/
/*}*/

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Comic Sans MS", sans-serif;
    overflow-x: hidden;
    background-color: #FAC898;
    color: darkblue;
}

a {
    text-decoration: none;
}
.healthy{
    padding: 5vw;
}
.healthy .happybirday{
    padding: 0 50px 0 30px;
    
}
.landing {
    display: flex;
    justify-content: center;
}

.tag {
    height: 100vh;
    width: 60vw;
    display: flex;
    align-items: center;
    padding: 5vw;
}

.tag p {
    font-size: 4.1vw;
    line-height: 6vw;
    text-align: center;
}

.about {
    padding: 5vw 2.5vw;
    display: flex;
    
}

.about .left {
    width: 45vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about .right {
    width: 55vw;
    display: flex;
    align-items: center;
}

.about .left img {
    width: 40vw;
    
    margin-bottom: 0.25vw;
}

.about span {
    font-size: 1vw;
}

.about p {
    font-size: 1.5vw;
    line-height: 2.5vw;
}

.purchase {
    padding: 0 5vw;

}

.purchase h2 {
    font-size: 2vw;
    padding: 5vw 0 1vw;
    font-weight: inherit;
    text-align: center;
}

.purchase p {
    font-size: 1.5vw;
    line-height: 2.5vw;
    text-align: center;
}

.purchase a {
    color: royalblue;
}

.purchase code {
    font-weight: bold;
}

.fader {
    opacity: 0;
    
    -ms-transform: translateY(30%);
    transform: translateY(30%);
    -o-transition: opacity 600ms ease-in, transform 600ms ease-out;
    -moz-transition: opacity 600ms ease-in, transform 600ms ease-out;
    -webkit-transition: opacity 600ms ease-in, transform 600ms ease-out;
    transition: opacity 600ms ease-in, transform 600ms ease-out;
}

.fader.appear {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.catalogue {
    padding: 5vw;
}

.catalogue-title {
    font-size: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: inherit;
}

.grid {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: auto auto auto auto;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.grid .card {
    width: 20vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5vw;
    margin-top: 2.5vw;
    background-color: darkblue;
}

.pic {
    width: 100%;
    -o-object-position: top;
    object-position: top;
    -o-object-fit: contain;
    object-fit: contain;
    transition: opacity 100ms ease-in;
}

.grid .card p {
    width: 100%;
    color: white;
    font-family: monospace;
    font-size: 1vw;
    line-height: 1.5vw;
}

footer {
    width: 100%;
    background-color: #F9BB80;
    padding: 0.75vw;
    font-size: 1vw;
    text-align: center;
}

footer a {
    color: royalblue;
}

@media only screen and (orientation: portrait) {

    .tag {
        height: auto;
        width: 100vw;
        justify-content: center;
    }

    .tag p {
        font-size: 8vw;
        line-height: 12vw;
        text-align: center;
    }

    .about {
        flex-direction: column;
        padding: 5vw;
    }

    .about .left, .about .right {
        width: 90vw;
    }

    .about .left img {
        margin-top: 5vw;
        width: 90vw;
        margin-bottom: 1vw;
    }

    .about span {
        font-size: 2.5vw;
    }

    .about p {
        font-size: 4vw;
        line-height: 7vw;
        text-align: initial;
    }

    .purchase p {
        font-size: 4vw;
        line-height: 7vw;
        text-align: initial;
    }

    .purchase h2 {
        font-size: 6vw;
        padding: 10vw 0 3vw;
    }

    .catalogue-title {
        font-size: 8vw;
        font-weight: initial;
        padding: 5vw 0;
    }

    .grid {
        display: initial;
    }

    .grid .card {
        justify-content: center;
        width: 90vw;
        padding: 2.8vw 2vw;
        margin-top: 5vw;
    }

    .grid .card p {
        font-size: 4vw;
        line-height: 6vw;
    }

    footer {
        font-size: 2vw;
        padding: 2vw;
    }
}

@media only screen and (orientation: landscape) {
    .pic:hover {
        opacity: 0.7;
        cursor: pointer;
    }

    footer a:hover {
        text-decoration: underline;
    }
}