/* General resets */
* {
  margin: 0;
  padding: 0;
}

/* Main content styling */
.main {
  width: 100%;
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.5) 50%
    ),
    url(sunrise.jpg);
  background-position: center;
  background-size: cover;
  height: 109vh;
}

/* Navbar styling */
.navbar {
  width: 1200px;
  height: 75px;
  margin: auto;
}

.icon {
  width: 200px;
  float: left;
  height: 70px;
}

.logo {
  color: green;
  font-size: 35px;
  font-family: Arial;
  padding-left: 20px;
  float: left;
  padding-top: 18px;
}

.menu {
  width: 400px;
  float: left;
  height: 70px;
}

ul {
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul li {
  list-style: none;
  margin-left: 62px;
  margin-top: 27px;
  font-size: 14px;
}

ul li a {
  text-decoration: none;
  color: #fff;
  font-family: Arial;
  font-weight: bold;
  transition: 0.4s ease-in-out;
}

ul li a:hover {
  color: #0e7988;
}

/* Discord login button */
.discord-login {
  width: 200px;
  float: left;
  margin-left: 270px;
  margin-top: 20px;
}

.btn-discord {
  width: 150px;
  height: 40px;
  background: #7289da;
  border: 2px solid #7289da;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.4s ease;
}

.btn-discord:hover {
  background: #fff;
  color: #7289da;
}

/* Content styling */
.content {
  width: 1200px;
  height: auto;
  margin: auto;
  color: #fff;
  position: relative;
  padding: 20px;
}

.content .par {
  padding-left: 20px;
  padding-bottom: 25px;
  font-family: Arial;
  letter-spacing: 1.2px;
  line-height: 30px;
}

.content h1 {
  font-family: "Times New Roman";
  font-size: 50px;
  padding-left: 20px;
  margin-top: 9%;
  letter-spacing: 2px;
}

.content span {
  color: green;
  font-size: 60px;
}

/* Footer styling */
.footer {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.footer-section {
  flex: 1;
  padding: 20px;
}

.footer-section h3 {
  border-bottom: 2px solid green;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer-section p {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #0e7988;
  font-family: Arial;
  transition: 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

/* Specific styling for privacy policy and terms of service pages */
body.privacy-policy, body.terms-of-service {
  background-color: white; /* Set background to white */
  color: black; /* Set text color to black */
  padding: 20px; /* Add some padding to the content */
}

body.privacy-policy .content, body.terms-of-service .content {
  padding: 20px;
  background-color: white; /* Ensure content background is also white */
  color: black; /* Ensure content text color is also black */
}

.privacy-policy .content, .terms-of-service .content {
  background-color: white;
  color: black;
  padding: 20px;
  margin-top: 20px; /* Mengurangi spasi di atas */
}

.privacy-policy .content h1, .terms-of-service .content h1 {
  margin-bottom: 20px;
}

.privacy-policy .content p, .terms-of-service .content p {
  margin-bottom: 20px;
}

.privacy-policy .content ul, .terms-of-service .content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-policy .content ul li, .terms-of-service .content ul li {
  list-style-type: disc;
}

.section-spacing {
  margin-top: 20px; /* Mengurangi spasi di antara bagian */
}