* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #32302f;
}

body {
  color: white;
  font-family: Verdana;
  text-align: center;
}

a.socials:link {
  color: white;
  background-color: #665c54;
  padding: 10px 20px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 15px;
  transform-origin: center;
  transition: transform 0.3s ease;
}

a.socials:hover, a.social:active {
  background-color: #928374;
  transform: scale(1.05);
}

.socials:visited {
  background-color: #665c54;
  color: white;
}

.socialList{
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #665c54;
  border-radius: 15px;
  height: 60px;
}

.menu {
  display: flex;
  justify-content: space-around;
  height:40px;
  width:60%;
}

.menu-item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    background-color: #665c54;
}

a.menu-link { 
  background-color: #928374;
  padding: 5px 10px;
  border-radius: 15px;
  text-decoration: none;
  color: white;
}

a.menu-link:visted {
  background-color: #928374;
  color: white; 
}

