@import url("https://fonts.cdnfonts.com/css/akira-expanded");
@import url("https://fonts.cdnfonts.com/css/caviar-dreams");

* {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: "Akira Expanded", sans-serif;
  font-size: large;
  margin-left: 3px;
  color: #000250;
}

.nav-list ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  gap: 1rem;
}

.nav-list ul a {
  text-decoration: none;
  font-family: "Caviar Dreams", sans-serif;
  color: black;
  text-transform: uppercase;
  font-weight: bold;
  padding: 1rem;
  width: 0px;
}

.navbar-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px;
  box-shadow: 1px #dedfe0;
  padding-block: 1rem;
}

.logo-img {
  width: 50px;
  height: 10%;
}

.logo {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

main {
  /* max-width: ;
  min-width: 1920px; */
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  margin-inline: auto;
  height: 100%;
  justify-content: center;
}

.dropdown {
  position: absolute;
  visibility: hidden;
}

.title {
  font-weight: 900;
  font-family: "Akira Expanded", sans-serif;
  color: #000250;
}

span {
  font-size: larger;
  font-weight: bolder !important;
}

.content-description {
  font-size: large;
  justify-content: start;
  font-family: "Caviar Dreams", sans-serif;
  flex: 1 1;

  max-width: 1000px;
  min-width: 500px;
}

.content-description p {
  margin-top: 20px;
  flex: 1 1;
  margin-left: auto;
}

.content {
  display: flex;
  flex: 1;
  align-items: center;
  align-self: center;
  justify-content: center;
  height: 100%;
  margin-left: 15%;
}

.content-image {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 5px;
  min-width: 300px;
  justify-content: center;
  margin-left: 5rem;
}

.content-image .second {
  margin-left: 5rem;
}

.content-image img {
  width: 99%;
  border-radius: 7px;
}

aside {
  min-height: 800px;
  min-width: 500px;
  display: flex;
  align-items: center;
  justify-content: end;
}

aside img {
  width: 60%;

  display: flex;
  justify-content: end;
}

footer {
  background-color: #000250;
  width: 100%;
  height: 250px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.footer-logo-text {
  font-family: "Akira Expanded", sans-serif;
  font-size: large;
  color: white;
  text-align: center;
  justify-content: center;
}

.footer-logo {
  padding: 80px 0;
}

footer p {
  text-align: center;
  color: white;
  font-family: "Caviar Dreams", sans-serif;
  margin-top: 10px;
}

.footer-socmed a {
  margin-top: 15px;
  font-family: "Caviar Dreams", sans-serif;
  color: white;
  justify-content: center;
  text-decoration: none;
  list-style-type: none;
  gap: 20px;
}

.footer-socmed {
  text-align: center;
  margin-top: 15px;
}

.footer-socmed pre {
  text-align: center;
}
.dropdown-content {
  position: absolute;
  visibility: hidden;
}

.dropdown-button {
  position: absolute;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  aside {
    visibility: hidden;
    position: absolute;
  }

  .dropdown-button {
    position: relative;
    visibility: show;
  }
  .dropdown-content {
    position: absolute;
    visibility: hidden;
  }

  .nav-list {
    visibility: hidden;
    position: absolute;
  }

  .content-image {
    visibility: hidden;
    position: absolute;
  }

  .content {
    min-width: 500px;
    text-align: center;
    margin: auto;
  }

  .logo {
    align-items: center;
    text-align: center;
  }

  .dropdown {
    position: relative;
    visibility: visible;
    margin-bottom: 1px;
  }

  .content-description {
    min-width: fit-content;
  }
  .navbar-container {
    justify-content: space-between;
    margin-inline: 50px;
    gap: 5px;
  }
  main {
    justify-content: unset;
    width: 100%;
    margin-inline: 0;
    height: 100%;
    margin-block: 38%;
  }

  .dropdown-button {
    border: 0px solid;
  }
  .show {
    display: block;
  }
}
