*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #10162f;
}

body{
    font-family: 'Open Sans', sans-serif;
}

a{
    text-decoration: none;
    color: white;
}
a:visited{
    color: white;
}

/* END default styling */

.main-container{
    width: 100%;
    max-width: 1480px;
    height: 100vh;
    background-color: #10162f;
    color: white;
    /* border: 1px solid #526bce; */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container > *{
    width: 100%;
}

h1{
    color: #e4e4e4;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 70px;
    letter-spacing: 2px;
}



.flex-column{
    display: flex;
    flex-direction: column;
}

.flex-center{
    justify-content: center;
    align-items: center;
}

.hidden{
    display: none;
}

.btn{
    border: 1px solid gray;
    padding: 10px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.7s ease;
    font-weight: 300;
}

.btn:hover{
    border-color: rgb(109, 243, 248);
    font-weight: 300;
    color:rgb(109, 243, 248);
    background-color: rgba(109, 243, 248, .04);
}

.btn[disabled]:hover{
    color: lightgray;
    border-color: lightgray;
}



@media only screen and (max-width: 400px) {
    #home h1{
        font-size: 55px;
    }

}
