body {
  background-color: #141640;
  color: rgb(217, 210, 223);
}
main {
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: rgb(255, 166, 0);
  font-size: large;
  font-weight: 700;
}
/* #content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
} */
#nav-bar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-decoration: none;
  align-content: center;
  border-bottom: 2px solid rgb(253, 251, 251);
  padding-bottom: 10px;
  cursor: grab;
}
a {
  text-decoration: none;
  color: rgb(249, 248, 250);
}
button {
  font-style: italic;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  stroke: aliceblue;
  color: rgb(44, 26, 4);
  width: 160px;
  height: 50px;
  border: 2px solid;
  border-color: rgb(255, 166, 0);
  font-size: large;
  cursor: grab;
}
footer {
  border-top: 1px solid rgb(253, 251, 251);
  padding-top: 5px;
  cursor: grab;
}
#social-media {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
  align-content: center;
}
#contact {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-decoration: none;
  align-content: center;
}
#content-text {
  color: chocolate;
}
@keyframes reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#content-type {
  animation: reveal 1s ease-in-out forwards;
  display: inline-block;
}
