* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
}

.menu{
    position: absolute;
    top: 3.25rem;
    left: 0;
    width: 100vw;
    height: 4rem;
    background-color: white;
}
.menu ul{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    padding-left: .5rem;
    box-shadow: inset 0 0 2px 0 rgb(58, 55, 55,.5);
}
.menu ul li{
    list-style-type: none;
    width: 100%;
}
#menu-icon{
  color: black;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all .3s linear;
}
#menu-icon:hover{
  color: rgba(0, 0, 0, 0.5);
}
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  box-shadow: inset 0 0 4px 1px rgb(58, 55, 55);
}
.hide{
    display: none;
}

.display {
  background-color: black;
  padding: .25rem 0.75rem;
  text-align: center;
  line-height: 10vmin;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  border-radius: 1rem;
  letter-spacing: 4px;
  display: inline-block;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.btn {
  background: transparent;
  padding: 0.7rem 1.2rem;
  border: 2px solid black;
  border-radius: 0.7rem;
  transition: all 0.4s;
  box-shadow: 0 0 2px black;
}

.btn:hover {
  color: white;
  background-color: black;
  box-shadow: none;
}
.btn:active {
  background-color: red;
}
nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.25rem;
  letter-spacing: 2px;
}
nav h3{
    color: #5e7ce2;
    margin-left: 2rem;
}
.nav-links {
    letter-spacing: 3px;
    margin-right: 2rem;
  }
  ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2rem;
  }
ul li {
  list-style-type: none;
  display: inline;
}
ul li a {
  text-decoration: none;
}
ul li a {
  color: black;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s linear;
}
ul li a:hover {
  color: #5e7ce2;
}
#color-shown {
  color: #5e7ce2;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.25);
}
@media (max-width: 640px) {
  .display {
    padding: .2rem 0.5rem;
    font-size: 1.5rem;
  }
  .nav-links .lg-screen-links{
    display: none;
  }
}
@media (max-width: 560px) {
  .display {
    font-size: 1.25rem;
  }
  .btn {
    background: transparent;
    padding: 0.5rem 1rem;
    border: 2px solid black;
    border-radius: 0.7rem;
    transition: all 0.4s;
    box-shadow: 0 0 2px black;
  }
}
@media (min-width: 640px) {
  #menu-icon{
    display: none;
  }
}