/*Competitions.css*/
/*buy.css*/
body {
  margin: 0%;
  padding: 0%;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

img {
  height: 20%;
  width: 15%;
  background-color: #fefefe;

}

#Log {
  display: inline;
  position: absolute;
  margin: 32px;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #222;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li {
  position: relative;
}

.menu li a {
  text-decoration: none;
  padding: 10px;
  color: #fefefe;
  font-size: 16px;
  transition: all 0.3s;
}

.menu li a:hover {
  border: 2px solid #fff;
  background-color: rgb(40, 40, 40);
  border-radius: 6px;
}

/*submenu*/
.submenu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background-color: #333;
  border-radius: 6px;
  width: auto;
}

.submenu a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.submenu a:hover {
  background-color: #444;
}


.menu li:hover .submenu {
  display: block;
}
/*main*/
h1 {
      text-align: center;
      color: #1a4d8f;
      font-size: 42px;
      margin-bottom: 50px;
      font-weight: bold;
      border-bottom: 3px solid #7ec8f5;
      padding-bottom: 10px;
    }
    section {
      background: #fff;
      border: 1px solid #cbd7f3;
      border-radius: 8px;
      padding: 25px 30px;
      margin: 80px;
    }
    h2 {
      color: #1a4d8f;
      font-size: 28px;
      margin-bottom: 20px;
      font-weight: 700;
      border-bottom: 2px solid #7ec8f5;
      padding-bottom: 8px;
    }
   
    ul {
      list-style: disc inside;
      font-size: 16px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 15px;
      font-size: 16px;
    }
    th, td {
      border: 1px solid #bbb;
      padding: 12px 15px;
      text-align: center;
      color: #222;
    }
    th {
      background-color: #7ec8f5;
      color: #fff;
    }


/*footer content*/
footer {
  position: relative;
  background-color: #222;
  color: white;
  padding: 20px;

}

.f-content {
  margin: 0;
  padding: 1%;
  list-style: none;
  background-color: black;
  width: 100%;
}

.f-content li {
  margin-bottom: 10px;
  display: inline-block;

}

.f-content li a {
  display: inline-block;
  padding: 10px;
  border: 1px solid black;
  background-color: black;
  border-radius: 5%;
  color: white;
  text-decoration: none;
}

.f-content li a:hover {
  border: 2px solid rgb(255, 255, 255);
  background-color: rgb(40, 40, 40);
}

#ins-yu {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
}

#ins-yu img {
  width: 30px;
  height: 30px;
}

#world {
  text-align: center;
}