@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body{
    background-color: #B05CFF;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    height: 100dvh;
    overflow: hidden;
}

main{
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow-y: auto;
}

.center {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1rem;
}

h1{
    font-size: 80px;
    font-weight: 400;
    margin: 0;
    line-height: 85px;
    text-align: center;
    max-width: 35rem;
}

p{
    font-size: 24px;
    font-weight: 400;
    transform: translateY(2rem);
}

a{
    text-decoration: none;
    color: white;
    font-size: 24px;
}

.bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo{
    margin-top: 45px;
}

.contact{
    width: 100%;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 40px;
}
.contact a {
    font-size: 16px;
}

span{
    background-color: white;
    border-radius: 100%;
    width: 8px;
    height: 8px;
    aspect-ratio: 1;
}


@media screen and (max-width: 850px){
    h1{
        font-size: 64px;
        line-height: 60px;
    }

    p, a{
        font-size: 20px;
        text-align: center;
    }
}


@media screen and (max-width: 500px){

    h1{
        font-size: 48px;
    }

    .contact{
        flex-direction: column;
        gap: 10px;
    }

    .bottom{
        gap: 15px;
    }

    span{
        display: none;
    }
}