*{
  margin: 0;
  padding: 0;
}
.header{
  min-height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom right,#029398,#27374D);
   background-position: center;
  background-size: cover;
  position: relative;
}

nav{
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}

.logo{
  width: 150px;
}

.nav-links{
  flex: 1;
  text-align: right;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding:0.8% 1.2%;
  position: relative;
}

.nav-links ul li button.utility{
  color:black;
  background-color: white;
  font-size: 12px;
  border-radius: 15px;
  padding: 10px 24px;
  font-weight: 800;
  border: none;
}
.nav-links ul li button.register  {
  color:rgb(255, 255, 255);
  background-color: #3274B8;
  font-size: 12px;
  border-radius: 15px;
  padding: 10px 24px;
  font-weight: 800;
  border: none;
}
.body{
  background-image: linear-gradient(to top right,#029398,#27374D);
   background-position: center;
  background-size: cover;
  position: relative;
}
.events {
  font-family: "cabin";
  color: azure;
  font-size: 55px;
  padding-top: 10px;
  text-align: center;
  margin-bottom: 5px;
}

.event-container {
  display: flex;
  justify-content: space-between; /* This will evenly space the buttons within the container */
  margin-top: 50px;
  margin-bottom: 100px;
}

.subtitle {
  font-family: "cabin";
  color: azure;
  font-size:33.3px;
  text-align: center;
  padding-top: 0px;
}

.sub_txt {
  color:rgb(62, 62, 62);
  margin-left: 20px;
  font-weight: 800;
  font-size: 17px;
  font-style: italic;
  font-family: 'intel';
  text-align:center;
  padding-bottom: 60px;
}

.event_btn {
  font-family: 'intel';
  font-size: 20px;
  width: 550px;
  height:230px;
  color: blanchedalmond;
  border: 5px;
  background-color: #3274B8;
  border-color: black;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 50px;
  margin-right: 50px;
}

#button1::before {
  content: attr(data-tooltip); 
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

#button2::before{
  content: attr(data-tooltip); 
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}


.button:hover::before {
  opacity: 1;
  visibility: visible;
}
section.footer{
  background-image:url(01.png);
  background-position: center;
  background-size:content;
}
img.footer{
  width: 20%;
  display: inline-block;
  margin-left: 10%;
}
pre.footer{
  font-size: 15;
  color: azure;
  margin-left: 12%;
  padding-bottom:50px;
}


