:root {
    --color-blue: #5C65F4;
    --color-coral: #F45C65;
    --color-orange: #F49F5C;
    --color-yellow: #F4EB5C;
    --color-green: #B1F45C;
}
body {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    /*animation: bgColor 10s infinite alternate;*/
    background-color: #5088ff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}
@media  screen and (max-height:680px) {
    body{
        overflow:scroll;
    }
}
a {
    text-decoration: none;
}
.layout-grid {
    overflow: hidden;
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-rows: 1fr 12fr;
    padding-top: 1rem;
    padding-bottom: 6rem;
}
.header-content {
    grid-area: 1/1/2/2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.navlink-container {
    grid-area: 1/1/2/2;
    display: flex;
    gap: 6rem;
    justify-content: flex-start;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding-left: 5vw;
    padding-right: 5vw;
}
@media screen and (max-width: 700px){
    .navlink-container {
        font-size: 0.8rem;
        gap: 3rem;
    }
}
/* @media screen and (max-width: 700px){
    .navlink-container {
        gap: 1rem;
    }
} */
.nav-item a{
    text-decoration: none;
    color: white;
}
.nav-item:hover {
    border-bottom: 2px solid white;
}
.ext-container {
    grid-area: 1/2/2/3;
    display: flex;
    gap: 6rem;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
    padding-right: 5vw;
}
.browser-icon {
    width: 2.5rem;
    height: 2.5rem;
    /*animation: bgColor 10s infinite alternate;*/
    box-shadow: inset 1px 1px 5px 5px #FFFFFF;
    object-position: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.browser-icon img {
    width: 1.8rem;
    height: 1.8rem;
}
@media screen and (max-width: 700px){
    .ext-container {
        font-size: 0.8rem;
        gap: 1rem;
    }
    .browser-icon {
        width: 1.5rem;
        height: 1.5rem;
        /*animation: bgColor 10s infinite alternate;*/
        box-shadow: inset 1px 1px 5px 5px #FFFFFF;
        object-position: center;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .browser-icon img {
        width: 1.2rem;
        height: 1.2rem;
    }
}

.main-content {
    height: 80%;
    padding-left: 5vw;
    padding-right: 5vw;
    grid-area: 2/1/3/2;
    display: flex;
    flex-direction: column;
    justify-content:space-around;
    padding-bottom: 6rem;
}
.catch-phrase {
    font-size: 6rem;
    font-weight: normal;
    color: white;
    cursor: default;
    padding-bottom: 1rem;
}

@media screen and (max-width: 1270px){
    .catch-phrase {
        font-size: 5rem;
    }
}
@media screen and (max-width: 1110px){
    .catch-phrase {
        font-size: 4rem;
    }
}
@media screen and (max-width: 956px){
    .catch-phrase {
        font-size: 3rem;
    }
}

@media screen and (min-width: 956px) and (max-height: 756px){
    .catch-phrase {
        font-size: 3rem;
    }
}
@media screen and (min-width: 850px) and (max-height: 680px){
    .catch-phrase {
        font-size: 2rem;
    }
}
@media screen and (max-width: 568px){
    .catch-phrase {
        font-size: 2rem;
    }
}
#platform-name {
    font-weight: 700;
    border-bottom: 3px solid white;
}
#CSSCtitle {
    width: 40vh;
    height: 12vh;
    /*animation: titleColor 10s infinite alternate;*/
}
#CSSClogo {
    width: 10rem;
    height: 10rem;
    display: inline-block;
}

.btn-download {
    height: 12rem;
    width: 75vw;
    background-color: white;
    border-radius: 50px;
    /*animation: btnTextColor 10s infinite alternate;*/
    color: #5088ff;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5vw;
    padding-left: 5vw;
}


.btn-text {
    font-weight: 600;
    font-size: 8rem;

}
@media screen and (max-width: 1700px){
    #CSSClogo {
        width: 9rem;
        height: 9rem;
    }
        .btn-text {
            font-size: 6rem;
        }
        .btn-download {
            height: 11rem;
        }
}
@media screen and (max-width: 1270px){
    #CSSClogo {
        width: 8rem;
        height: 8rem;
    }
    .btn-text {
        font-size: 5rem;
    }
    .btn-download {
        height: 10rem;
    }
}
@media screen and (max-width: 1110px) and (min-height: 720px){
    #CSSClogo {
        width: 7rem;
        height: 7rem;
    }
    .btn-text {
        font-size: 4rem;
    }
    .btn-download {
        height: 9rem;
    }
}
@media screen and (max-width: 956px) {
    #CSSClogo {
        width: 6rem;
        height: 6rem;
    }
    .btn-text {
        font-size: 3rem;
    }
    .btn-download {
        height: 8rem;
        border-radius: 30px;
    }
}
@media screen and (max-width: 850px){
    #CSSClogo {
        width: 5rem;
        height: 5rem;
    }
    .btn-text {
        font-size: 3rem;
    }
    .btn-download {
        border-radius: 20px;
        height: 7rem;
    }
}
@media screen and (min-width: 850px) and (max-height: 756px){
    #CSSClogo {
        width: 4rem;
        height: 4rem;
    }
    .btn-text {
        font-size: 3rem;
    }
    .btn-download {
        border-radius: 20px;
        height: 6rem;
    }
}
@media screen and (min-width: 850px) and (max-height: 680px){
    #CSSClogo {
        width: 2rem;
        height: 2rem;
    }
    .btn-text {
        font-size: 3rem;
    }
    .btn-download {
        border-radius: 20px;
        height: 3rem;
    }
}
@media screen and (max-width: 720px){
    #CSSClogo {
        width: 3rem;
        height: 3rem;
    }
    .btn-text {
        font-size: 2rem;
    }
    .btn-download {
        border-radius: 20px;
        height: 5rem;
    }
}
@media screen and (max-width: 568px){
    #CSSClogo {
        width: 2rem;
        height: 2rem;
    }
    .btn-text {
        font-size: 1.5rem;
    }
    .btn-download {
        border-radius: 20px;
        height: 3rem;
    }
}
@media screen and (max-height:720px){

}
.footer-content {
    position: fixed;
    bottom:0;
    left:0;
    height: 6rem;
    width: 100vw;
    font-size: 1.5rem;
    grid-area: 3/1/4/2;
    background-color: white;
    color: black;
    cursor: default;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items: center;
    font-weight:600;
    line-height: 1;
}
.footer-content span {
    width: 90%;
}
@media screen and (max-width: 1300px){
    .footer-content {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 1080px){
    .footer-content {
        font-size: 1rem;
    }
}
/* @media screen and (max-width: 925px){
    .footer-content {
        font-size: 0.8rem;
    }
} */
/* @media screen and (max-width: 720px){
    .footer-content {
        font-size: 0.5rem;
    }
} */
