*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: linen;
    color: rgb(17, 18, 18);
    font-size: 16px;
    line-height: 1.5;
}
h1{
    color: blue;
}

p{
    font-weight: bold;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.main {
    color: blue;
    line-height: 2.5;
}

.navbar {
    background-color: black;
    color:white;
    height: 60px;
}
.navbar2 {
    color:black;
    height: 800px;
}
.navbar .container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;

}
.navbar2 .container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;

}
.navbar ul{
    display: flex;
    flex-direction: row;
    list-style-type: none;
}
.navbar2 ul{
    display: flex;
    flex-direction: row;
    list-style-type: none;
}

.navbar ul li{
    margin-left: 20px;
}

.navbar2 ul li{
    margin-left: 100px;
}

.navbar2 ul li:first-child {
    margin-left: 0;
}

.navbar .logo{
    font-size: x-large;
    font-weight: bold;
    padding-right: 500px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}
.navbar2 a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.navbar a:hover{
    border-bottom: 2px white solid;
    color: aliceblue;
}

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;
}
#text{
    color: black;
}

#color1{
    background-color: blue;
    color: white;
}
#color2{
    background-color: black;
    color: white;
}
#color3{
    background-color: green;
    color: white;
}
#color4{
    background-color: white;
}