/* Reset the styles, set border-box for intuitive pading/margin */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Body */
body{
    display: flex;
    flex-direction: column;
    font-family: 'Lato', sans-serif;
    background: radial-gradient(circle, #9C53A1 0%, #394BA0 85%);
    color: #ffffff;
    min-height: 100vh;
}

/* Navbar */
.navbar{
    display: flex;
    padding: 1rem 2rem;
    background-color: #0D1331;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    height: 65px;
}

.login-button{
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    color: #0D1331;
    border: 1.5px solid #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color .2s, color .2s;
}

.login-button:hover{
    background-color: #0a1f4c;
    color: #ffffff;
}

main{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Coming Soon text */
.coming-soon{
    font-size: 80px;
}