/* add home page styles here */

nav{
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: transparent;
  min-height: 10vh;
  width: 100%;
  position: fixed;
  
}

li img {
  height: 50px;
  width: 50px;
  border-radius: 5px;

}

.logo {
  color: var(--color1);
  /* text-transform: uppercase; */
  font-family: 'Megrim', cursive;
  color: #eeab92;
  letter-spacing: 2px;
  font-size: 3.5em;
  padding-right: 20px;
  padding-top: 20px;
  width: 50%;
}

.links {
  display: flex;
  justify-content: space-around;
  width: 30%;
  font-family: 'Poiret One', cursive;
  font-size: 1.2em;
}

.links li {
  list-style: none;
  color: var(--color1);
}

.links a {
  color: var(--color1);
  text-decoration: none;
  letter-spacing: 2px;

}

.links a:hover {
  color: var(--color2);
}

button, input[type="submit"]{

  background: transparent;
  color: var(--color3);
  border: 2px var(--color3) solid;
  font-size:1.2em;
  padding: 5px;
  margin-top: 20px;
  text-decoration: none;
  font-family: 'Poiret One', cursive;
  font-weight: bold;
  width: 100px;
  height: 50px;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  transition: all .2s ease-in-out;
}

button:hover, input[type="submit"]:hover {
  background: rgba(238, 171, 146, .5);
  width: 100px;
  height: 50px;
  border-bottom-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 0%;
  border-top-left-radius: 0%;
}

button:focus {
  outline: none;
}
