*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: linen;
}
.navbar{
    background-color: black;
    color: white;
    height: 60px;
}
ul{
    list-style-type: none;
}
.container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}
.main{
    color: blue;
    line-height: 2.5;
}
.navbar .container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}
.navbar ul{
    display: flex;
    flex-direction: row;
    list-style-type: none;
}
.navbar ul li{
    margin-left: 20px;
}
.navbar .logo{
    font-size: x-large;
    font-weight: bold;

}
.navbar a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}
.navbar a:hover{
    border-bottom: 2px #fff solid;
    color: #ddd;
}
button{
    padding: 5px 10px;
    margin: 5px;
    font-size: large;
    font-weight: bold;
    background-color: lightgray;
    border-radius: 5px;
}
button:hover{
    background-color: yellow;
    color: red;
}

.team{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 100%;
        align-items: center;
}
.team a{
    color: black;
    text-decoration: none;
    font-size: 30;
    font-weight: bold;
}
.team a:hover{
    color: blue;
}
.about{
    color: black;
    font-weight: bold;
}
.member{
    width: 25%;
    color: black;
}