    * {
    padding: 0;
    margin: 0;

    scroll-behavior: smooth;
}

html{
    
        overflow-x: hidden;
        overflow-y: scroll;

       background-color: #276ea6;
            
}


.title{

    margin-top: 20vh;
    text-align: center;
    color: white;
    font-family: Montserrat;
    font-size: 5rem;
}

.text{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;

    color: white;
    
    font-family: InterBlack;
    font-size: 2.5rem;
}

.buttons{
    margin-top: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

.buttons button{
    font-size: 1.5rem;
    padding: 1rem 2rem 1rem 2rem;
    background-color: white;
    color:#276ea6;
    border-style: solid;
    border-width: 0px;
    border-color: black;
    font-family: headingpro;
    transition: .5s ease-out;
}

.buttons button:hover{
    transform: scale(1.1, 1.0);
    border-top-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    border-width: 1px;
}