@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #fff;
  text-align: center;
  background: url("../Backgrounds/IMG_4500.webp") no-repeat center center fixed;
  background-size: cover;
  background-position-x: center;
}

.title {
  font-size: 2.5rem;
  margin: 5rem 5% 20px 5%;
  color: #ffffff;
}

.button {
  display: inline-block;
  padding: 10px 15px;
  margin: 10px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.button:hover {
  background-color: #0056b3;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: 0;
  padding: 20px;
  
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  align-self: center;
}

#colouredContainer {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}

.section {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  min-height: 5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--main-text-color);
}

.section:hover {
  cursor: pointer;
}

.section h3 {
  cursor: pointer;
  color: #007bff;
  -webkit-tap-highlight-color: transparent;
}

.content {
  display: none;
  overflow: hidden;
  padding: 0;
  max-height: 0px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* .content {
  display: none;
  overflow: hidden;
  padding: 0;
  transition: max-height 1s ease, padding 1s ease;
} */

/* .content.active {
  max-height: 1200px;
  padding: 10px;
} */

a {
  color: #007bff;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  margin-left: 20px;
  text-align: left;
}

li {
  margin: 5px 0;
  color: #ffffff;
}

p {
    color: #ffffff;
}

.warning {
  margin-right: 5%;
  margin-left: 5%;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;

}

img.tutorial {
  width: 30%;
  height: auto;
  margin: 10px 0;
}

@media (max-width: 600px) {
  .container {
    padding: 10px;
  }

  .section {
    padding: 10px;
  }

  img.tutorial {
    width: 80%;
  }
}


.ad-display {
  width: 30%;
  height: auto;
  margin: 0 0 0 1rem;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .main-container {
    flex-direction: column;
    align-items: center;
  }
  .ad-display {
    width: 100%;
    margin: 2rem 0;
  }
  
}