html {
    scroll-behavior: smooth;
    background: linear-gradient(104.15deg, #240046 8.89%, #10054D 91.74%);}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.flex {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

a{
    display: block;
    text-decoration: none;
    color: white;
    padding: 10px 0px;
}

.btns {
    display: flex;
    gap: 20px;
}

.flex .btn {
    background-color: blueviolet;
    width: 200px;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-size: 20px;
}

@media only screen and (max-width: 550px){
    .btns{
        width: 100%;
        align-items: center;
        flex-direction: column;
    }

    .flex .btn{
        width: 100%;
    }

    .flex{
        padding: 0px 5%;
    }
}