@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
body{
    background-color: black;
    font-family: 'Questrial', sans-serif;
    overflow: hidden;
}
    
h1{
    color: white;
    font-size: 100px;
    text-align: center;

    align-items: center;
    justify-content: center;
    margin-left: 20%;
    margin-right: 20%;

}
h2{
    color: white;
    font-size: 40px;
    text-align: center;
}

.title{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    height: 80vh;
}
p{
    color: white;
    margin: 50px 50px;
    font-size: 30px
}

button{
    padding: 20px 50px;
    background-color: white;
    color: black;
    border-radius: 20px;
    font-size: 20px;
    border: none;
    position: absolute;
    top: 50px;
    right: 50px
}


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

    h1{
        font-size: 50px;
    }

    h2{
        font-size: 20px;
    }

    p{
        font-size: 15px;
    }

    button{
        font-size: 15px;
        padding: 10px 25px;
        top: 40px;
        border-radius: 10px ;
    }
}