@font-face {
    font-family: "Quicksand";
    src: url(Quicksand.ttf);
}

body, html{
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
}

html{
    font-size: 62.5%;
}

body{
    width: 100vw;
    min-height: 100vh;;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    box-sizing: border-box;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    padding: 6rem 10rem;
}

body::before{
    content: "";
    position: absolute;
    top :0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/background.webp') no-repeat center top/cover;
    z-index: -1;
    opacity: 1;
}

body::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 0;
    opacity: .3
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.logo{
    width: 5rem;
}

.name{
    font-size: 2rem;
}

.quote{
    font-size: 1.2rem;
    text-align: center;
}

.launching{
    font-size: 8rem;
    width: 40rem;
    text-align: center;
    line-height: 8rem;
    margin-bottom: 1.5rem;
}

.currently{
    font-size: 1.9rem;
    text-align: center;
    font-family: "Quicksand";
    width: 55rem;
}

.check{
    font-size: 1.2rem;
    text-align: center;
    font-family: "Montserrat";
    width: 25rem;
    margin-bottom: 2rem;
    padding: 1rem 1rem;
    background-color: rgb(255, 255, 255);
    color: #69443c;
    border-radius: 3rem;
    font-weight: 600;
}

.icons{
    display: flex;
    align-items: center;
    justify-content: center;;
    gap: 1rem
}

.icon:hover{
    scale: 1.05
}

.icon, .icon:active{
    width: 2.5rem;
    margin-right: 1rem;
    vertical-align: middle;
    scale: 1
}

@media screen and (max-width: 900px) {
    html{
        font-size: 40%;
    }
    .currently{
        width: 30rem
    }
    .launching{
        width: 35;
        font-size: 7rem;
        line-height: 6rem;
        word-wrap: wrap;
    }
}

@media screen and (max-height: 750px) {
    .launching{
        margin-top: 10rem;
    }
    body{
        padding: 4rem 0rem 10rem 1rem;
    }
}