@font-face {
    font-family: Copperplate;
    src: url(fonts/Copperplate.ttf);
}

@font-face {
    font-family: Requiem;
    src: url(fonts/Requiem.ttf);
}

@font-face {
  font-family: breve-title-book;
  src: url(fonts/breve-title-book.ttf);
}

:root{
  --gold-echoes: #e6b12f;
  --purple-echoes: #572187;
  --purple-echoes-black: #1e102b;
}

.nav-web-topic{
    position: relative;
    left: 10px;
    font-family: Requiem;
    font-size: 20px;
    color: var(--gold-echoes);
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
}

.home-nav{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--purple-echoes);
    width: 100%;
    height: 100px;
    transition-property: background-color, transform;
    z-index: 1000;
    
}

@keyframes slideUpAnimation-main-nav {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0%);
    }
  }

  @keyframes slideDownAnimation-main-nav {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-100%);
    }
  }
  
.home-nav ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.home-nav img{
    font-size: 20px;
    font-family: Requiem;
    color: var(--gold-echoes);
    width: 70px;
    cursor: pointer;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    user-select: none;
}

.nav-list{
    box-sizing: border-box;
    list-style: none;
    font-size: 25px;
    font-family: Copperplate;
}

.nav-list li a{
    padding: 10px 40px 10px 40px;
    margin: 10px;
    border-radius:  10px;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
    color: var(--gold-echoes);
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    text-overflow:ellipsis;
}

.nav-list li a:hover{
    cursor: pointer;
    transition-duration: 200ms;
    background-color: var(--gold-echoes); 
    box-shadow: 2px 2px 2px 1px black;
    color: var(--purple-echoes);
}

footer{
  background-color: rgb(18, 18, 18);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer *{
  color: white;
  font-family: "Copperplate";
}

footer ul{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

footer ul li{
  display: flex;
  flex-direction: column;
  justify-content: left;
  height: 250px;
  margin: 0 80px;
}

footer ul li h1{
  color: var(--gold-echoes);
}

footer ul li a{
  margin: 10px 0;
  text-decoration: none;
}

footer ul li h1{
  text-align: center;
}

footer ul li:first-of-type a{
  transition: all 0.2s ease;
}

footer ul li:first-of-type a:hover{
  color: rgb(158, 158, 158);
  transition: all 0.2s ease;
  text-shadow: 2px 2px black;
}

footer ul > li:nth-of-type(3) p{
  width: 400px;
  text-align: justify;
}

footer ul > li:nth-of-type(3) div{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

footer ul > li:nth-of-type(3) a img{
  width: 40%;
}


footer ul > li:nth-of-type(2) img{
  width: 8%;
  filter: invert(1);
  margin-right: 10px;
}

footer ul > li:nth-of-type(2) a,footer ul > li:nth-of-type(2) p{
  border-radius: 20px;
  background-color: rgb(59, 59, 59);
  cursor: pointer;
  transition: all 0.2s ease;
  text-wrap: nowrap;
}

footer ul > li:nth-of-type(2) a:hover,footer ul > li:nth-of-type(2) p:hover{
  transition: all 0.2s ease;
  box-shadow: 5px 5px 2px 1px rgb(10, 10, 10);
  transform: scale(1.05);
}

footer ul > li:nth-of-type(2) a,footer ul > li:nth-of-type(2) p {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 400px;
}

.designer{
  margin: 0;
  margin-top: 20px;
}

.designer a{
  font-weight: bold;
}

.copyright{
  font-family: "breve-title-book";
}