:root {
  --base-color: linear-gradient(315deg, #ffffff 0%, #f6fef9 74%);
  --base-variant: #ffffff;
  --text-color: #171717;
  --text-color2: #ffffff;
  --svg-color: #ffae00;
  --secondary-text: #8838ff;
  --primary-color: #f1e0ff;
  --secondary-color: linear-gradient(315deg, #082013 0%, #294520 74%);
  --button-color: linear-gradient(to right, #bff00d , #73f00d);
}

body {
  background-color: var(--base-variant);
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  fill: var(--svg-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0px;
}

.header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-image: var(--secondary-color);
  color: var(--text-color2);
  margin: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  gap: 40px;
  padding-bottom: 50px;

}

.Left-header {
  display: flex;
  align-items: center;
  font-size: 24px;
  justify-content: space-between;
  gap: 15px;
  padding-left: 35px;
  padding-right: 85px;
}

.left-inner-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.Left-header img {
  width: 45px;
  height: 45px;
  margin-left: 25px;
  padding: 10px;
}



.upper-header {
  display: flex;
  flex-direction: column;
  align-self: center;
  font-size: 24px;
  font-weight: black;
}

.forum {
    display: flex
}

.content-menu {
    align-self: center;
}

.downloads {
  border-radius: 25px;
  border: 0px;
  background-image: var(--button-color);
  padding: 20px;
  font-size: 15px;;
  color: black;
  font-weight: bold;
}

.upload-btn {
   border-radius: 25px;
   border: 0px;
   background-image: var(--button-color);
   padding: 20px;
   font-weight: bold;
   color: black;

}

.download-button {
   border-radius: 25px;
   border: 0px;
   background-image: var(--button-color);
   padding: 20px;
   font-weight: bold;
   color: black;
}

.upload-btn span, .downloads span, .downloads span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.upload-btn span:after, .downloads span:after, .downloads span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.upload-btn:hover span, .downloads:hover span, .downloads:hover span {
  padding-right: 25px;
}

.upload-btn:hover span:after, .downloads:hover span:after, .downloads:hover span:after {
  opacity: 1;
  right: 0;
}

#loading {
  align-self: center;
}




.main {
  display: flex;
  justify-content: space-around;
  width: 100%;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 30px;
}


.footer {
  display: flex;
  gap: 30px;
  flex-direction: row;
  background-image: var(--secondary-color);
  color: var(--text-color2);
  margin: 0px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.conditions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.conditions p {
  text-decoration: underline;
}

.image-grid {
  display: flex;
  flex-direction: row;
  
  gap: 30px;
}

.image-grid h2 {
  text-align: center;
}

.image-grid img {
  width: 625px;
  height: auto;
}

@media only screen and (min-width: 300px) and (max-width: 1360px) {
  .Left-header {
    padding-right: 25px;
  }

  .Left-header img {
    width: 35px;
    height: 35px;
    margin-left: 5px;
    padding: 5px;
  }

  .Left-header h1 {
    font-size: 2.2rem;
  }

  .downloads {
    border-radius: 25px;
    border: 0px;
    background-image: var(--button-color);
    padding: 15px;
    font-size: 10px;;
    color: black;
    font-weight: bold;
  }

  .upper-header {
    display: flex;
    flex-direction: column;
    align-self: center;
    font-size: 11px;
    font-weight: black;
  }

  .main {
    display: flex;
    justify-content: space-around;
    width: 100%;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    font-size: 0.8rem;
    padding-bottom: 30px;
    gap: 15px;
  }


  .footer {
    display: flex;
    gap: 30px;
    flex-direction: row;
    background-image: var(--secondary-color);
    color: var(--text-color2);
    margin: 0px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .image-grid {
    display: flex;
    flex-direction: column;
    
    gap: 15px;
  }

  .main p {
    text-align: center;
    font-size: 0.8rem;
    padding: 10px;
  }

  .image-grid img {
    width: 370px;
    height: auto;
  }

  .conditions {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .conditions p {
    text-decoration: underline;
  }
}

