body{
    background: linear-gradient(to bottom right, #edbd1f, #e84eed);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 100vh;
    color: white;
}
@media (min-width: 601px) {
    .title{
        text-align: center;
        border: white 3px solid;
        border-radius: 10px 10px 0 0;
        width: 65%;
        margin-left: auto; margin-right: auto;
    }
    .navbar{
        overflow: hidden;
        border: white 3px solid; border-top: unset;
        border-radius: 0 0 10px 10px;
        margin-bottom: 20px;
        width: 65%;
        margin-left: auto; margin-right: auto;
        .navbar-button{
            float: left;
            display: block;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            color: white;
        }
        .navbar-button:hover{
            background-image: linear-gradient(to top right, #e84eed, #edbd1f);
        }
    }
    .about{
        width: 70%;
        border: white 3px solid;
        border-radius: 10px;
        margin-left: auto; margin-right: auto;
        display: flex;
        justify-content: space-around;
        .member{
            width: 45%;
            display: inline-block;
        }
    }
}