body {
    margin: 0;
    padding: 0
}


.menu {
    background-color: rgb(32, 31, 31);
    padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu h2 {
    color: red;
    font-size: 40px;
    margin-left: 80px;
    display: inline-block;
}

.list {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    
    
}

.list a {
    display: block;
    padding: 1em;
    text-decoration: none;
    color: rgb(216, 205, 205);
}

.list a:hover {
    background-color: rgb(119, 121, 121);
}

.text {
    text-align: right;
    margin-right: 50px;
}

.about {
    margin-top: 40px;
    background-color: antiquewhite;
    padding: 50px;
    border-radius: 100px;
}