/*GOOGLE FONTS*/

.dm-serif-display-regular {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}

.dm-serif-display-regular-italic {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: italic;
}


.source-code-pro {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .rubik-80s-fade-regular {
    font-family: "Rubik 80s Fade", system-ui;
    font-weight: 400;
    font-style: normal;
  }  

  .orbitron{
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }

  
.mona-sans{
  font-family: "Mona Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.special-gothic-expanded-one-regular {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.coral-pixels-regular {
  font-family: "Coral Pixels", serif;
  font-weight: 400;
  font-style: normal;
}

.cal-sans-regular {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*END*/

body {
  margin: 0;
  padding: 0 0 60px 0; 
  box-sizing: border-box;
  font-family: sans-serif;
}

.border {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
  padding: 1em;
}

.logo img {
    width: 400px;
}

.title {
  color: #4f7bda;
  font-size: 1.8em;
  margin: 0;
  font-family: "DM Serif Display", serif;
}

.dropdown {
  position: relative; 
  margin-right: 1em;
}


.dropdown-button {
  padding: 10px 20px;
  cursor: pointer;
  background-color: transparent;
  color: rgb(223, 44, 21);
  border: none;
  border-radius: 4px;
  font-family: "DM Serif Display", serif;
  font-size: 2em;
  transition: all 0.3s ease;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: white;
  min-width: 160px;
  z-index: 1;
  border-radius: 4px;
  font-family: "Source Code Pro", monospace;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: black;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown.show .dropdown-content {
  display: block;
}

.dropdown-button:hover {
  transform: scale(1.05);
  color: rgb(255, 113, 103);
}

.foot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1em 0;
  position: fixed;
  bottom: 0;
  background-color: white;
  z-index: 3;
}

.foot img {
  height: 50px;
  width: 50px;
}

.info-contain {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 30%;
  margin: 2em auto;
  padding: 1em;
}

.info-contain h1 {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  color: #ffd412;
  font-size: 2.5em;
  text-align: center;
}

.info-contain p {
  font-family: "Source Code Pro", monospace;
  font-size: 1em;
  text-align: center;
}

.info-contain a {
  font-family: "Source Code Pro", monospace;
  font-size: 1.5em;
  text-align: center;
  text-decoration: none;
  color: rgb(223, 44, 21);
}


.info-contain h1 {
font-family: "DM Serif Display", serif;
font-style: italic;
color: #ffd412;
font-size: 3em;
}

.info-contain p {
font-family: "Source Code Pro", monospace;
}

@media (max-width: 600px) {
  .border {
    flex-direction: row;
    align-items: center;
    gap: 1em;
    padding: 1em;
  }
.border img {
 width: 7em;
}

  .title {
    font-size: 1.0em;
    text-align: center;
    padding-left: 20px;
  }

  .dropdown-button {
    font-size: 1.5em;
    padding: 0px;
  }

  .dropdown-content {
    right: auto;
    left: 0;
    z-index: 8;
  }

  .info-contain h1 {
    font-size: 2em;
  }

  .info-contain {
    max-width: 100%;
    padding: 1em;
  }

  .foot {
    position: static;
  }

}