:root {
  --main-color: #7ED957;
  --secondary-color: #FFDE59;
  --clr-gray: #919191;
  --button: #CC7A01;
  --text-color: #fff;
}

* {
  box-sizing: border-box;
  font-family: 'Courier New', Courier, monospace;
}

body {
  margin: 0;
  height: 100%;
  background-color: var(--main-color);
  font-family: Arial, Helvetica, sans-serif;
  
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

header {
    width: 100%;
    height: 90px;
    background-color: var(--clr-gray);
    margin: 0;
    padding: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
}

.banner {
  display: flex;
  align-items: center;
  background-color: var(--clr-gray);
  gap: 20px;
  padding: 20px;
}

.banner img {
  width: 100px;
  border-radius: 50%;
}

.banner a {
  font-size: 40px;
  margin: 0;
  text-decoration: none;
  font-weight: 900;
  color: inherit;
}

.navbar {
  display: block;
  padding: 15px;
  background: var(--secondary-color);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.navbar .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 175px;
  height: 50px;
  background-color: var(--button);
  color: #000;
  text-decoration: none;
  border-radius: 20px;
}

.dropdown {
  position: relative;
}

.menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--button);
  min-width: 200px;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.menu a {
  padding: 10px 16px;
  color: var(--text-color);
  text-decoration: none;
}

.menu a:hover {
  background: #ff9800;
}

.dropdown:hover .menu {
  display: flex;
}


main h1 {
  text-align: center;
  margin-bottom: 40px;
}

footer {
  background-color: var(--clr-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

footer a {
  text-decoration: none;
  color: black;
}

.backBtn {
    background-color: var(--button);
    color: #000;
    width: 120px;
    height: 45px;
    text-decoration: none;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 20px;
    margin: 0 20px;
}

@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .navbar .btn {
    width: 100%;
  }

  .dropdown .menu {
    position: static;
    margin-top: 5px;
  }
}
.soon {
  align-items: center;
  justify-items: center;
}