body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1B3358;
  color: #fff;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-track {
  background: #06142E;
}

body::-webkit-scrollbar-thumb {
  background-color:#1B3358;
  border-radius: 20px;
  border: 4px solid #06142E;
}

.topbar {
  position: sticky;
  top: 0;
  background-color: #06142E;
  padding-left: 10px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
}

.menu {
  list-style: none;
  display: flex;
}

.menu li {
  margin-right: 20px;
  padding: 20px;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #F1916D;
}

.dropdown {
  padding: 20px;
  align-items: right;
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.dropdown:hover{
  color: #F1916D;
}

.dropdown-child {
  display: none;
  background-color: #06142E;
  min-width: 100px;
  position: absolute;
  right: 0;
  text-align: right;
  top: 100%;
}

.dropdown-child a {
  padding: 20px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-child {
  display: block;
}

img{
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
}

.title-container{
  position: relative;
}

.title-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(rgba(0,0,0,0), #1B3358);
  z-index: 1; 
}

.title {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 200%;
  z-index: 3;
  animation: fadein 2s;
}

@keyframes fadein {
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}

.content{
  position: relative;
  margin: 10%;
}

.sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sections > div {
  padding: 20px;
  border-radius: 10px;
  background-color: #06142E;
}

.sections img {
  border-radius: 10px;
}

.live{
  border-radius: 10px;
  margin: 20px;
}

.footer{
  position: relative;
  display: flex;
  left: 0;
  right: 0;
  bottom: 0%;
  padding-top: 10px;
  background-color: #06142E;
  align-items: center;
  justify-content: center;
}