body{
    background-color: rgb(15, 15, 15);
    font-family: 'Outfit', sans-serif;
    font-size: large;
    color: rgb(222, 255, 204);
}
/*nav bar style*/
header span{
    background-color: rgb(222, 255, 204);
    padding: 10px;
    border-radius: 10px;
    color: rgb(15, 15, 15);
  position: absolute;
  left: 30px;
  top: 30px;
    font-size: 1.5em;
}
header span a:link{
    color: rgb(15, 15, 15);
    text-decoration: none;
}
header span a:hover{
    color: rgb(15, 15, 15);
    text-decoration: none;
}
header span a:active{
    color: rgb(15, 15, 15);
    text-decoration: none;
}
header span a:visited{
    color: rgb(15, 15, 15);
    text-decoration: none;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  position: absolute;
  right: 50px;
  top: 10px;
  font-family: 'Gugi', sans-serif;
  font-size:1em;
}
  nav ul li a {
  display: block;
  color: rgb(222, 255, 204);
  padding: 14px 16px;
  text-decoration: none;
}


a:link{
    color: rgb(222, 255, 204);
    text-decoration: none;
}
a:hover{
    color: rgb(222, 255, 204);
    text-decoration: none;
}
a:active{
    color: rgb(244, 199, 11);
    text-decoration: underline;
}
a:visited{
    color: rgb(244, 199, 11);
    text-decoration: none;
}


footer{
    display: grid;
    text-align: center;
    padding: 1em;
    color: rgb(222, 255, 204);
    bottom: 0;
}
.gugi-regular {
  font-family: "Gugi", sans-serif;
  font-weight: 400;
  font-style: normal;
}