* {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    pointer-events: none;
    user-select: none; 
    position: relative;
}

a{
    text-decoration: none;
    color: rgb(13, 201, 214);
    user-select: none;
    cursor: pointer;
    pointer-events: all;
}

.left ul li a:hover {
    color: #36197F;
    font-size: 17px;
  }

button{
    user-select: none;
    cursor: pointer;
    pointer-events: all;
  }

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./Assets/event.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
   
    z-index: -1;
}

.content {
    padding: 0px;
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

nav {
    width: 100vw;
    height: 55px;
    background-color: #161735;
    position: fixed;
    z-index: 1;
    overflow-y: hidden;
}

.right img {
    width: 200px;
    padding-left: 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left {
    display: flex;
    align-items: center;
}

.left ul {
    overflow-y: hidden;
}

.left ul li {
    display: inline;
    padding: 25px;
    color: white;
    overflow-y: hidden;
}

.left ul li a {
    text-decoration: none;
    color: white;
    overflow-y: hidden;
}

.button {
    display: none;
}

.button button {
    background-color: #161735;
    border: none;
    padding: 10px;
    margin-right: 20px;
}

.button button i {
    font-weight: 900;
    font-size: 40px;
}

main {
    margin-top: 55px;
    padding-bottom: 50px;
    background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(98, 96, 207, 0.3), rgba(120, 81, 165, 0));
}

.heading {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.heading h1 {
    box-shadow:0px 0px 7px 7px rgb(17, 16, 16);
    color: white;
    margin: 20px;
    padding: 20px;
    border-radius: 25px;
}

.event-heading {
    margin: 30px;
    display: flex;
    justify-content: center;
}

.event-heading h2 {
    user-select: none;
    cursor: pointer;
    pointer-events: all;
    background-color: rgba(22, 23, 53, 0.4);
    box-shadow: white 0px 0px 15px 3px;
    padding: 20px;
    margin: 20px;
    border-radius: 25px;
}

.event-heading h2:hover {
    font-size: 35px;
}

.banner {
    margin: 10px;
    display: flex;
    justify-content: center;
}

.banner img {
    user-select: none;
    cursor: pointer;
    pointer-events: all;
    height: 550px;
    border-radius: 25px;
    margin: 20px;
}

.banner img:hover {
    height: 600px;
    box-shadow: rgb(91 76 249) 0px 0px 15px 3px;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overview {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 25px;
    margin: 20px;
    text-align: start;
    line-height: 30px;
    box-shadow: 0px 0px 15px 3px white;
}

.register {
    display: flex;
    justify-content: center;
}

.register button {
    background: none;
    border: none;
    padding: 20px;
    margin-top: 30px;
    font-size: 25px;
    border: 2px solid white;
    border-radius: 25px;
    font-weight: 700;
   
}

.register button:hover {
    font-size: 30px;
}

.register a {
    text-decoration: none;
    color: white;
}

@media screen and (min-width: 800px){
    .overview{
        width: 550px;
    }
    
}

@media screen and (max-width: 800px) {

    .button {
      display: inline;
    }
  
    .left ul {
      display: flex;
      flex-direction: column;
    }
  
    nav {
      height: 250px;
    }
  
    .left {
      position: absolute;
      top: 25%;
      width: 100vw;
      display: flex;
      justify-content: center;
    }
  
    .left ul {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .left ul li {
      padding: 10px;
    }
}





.footer {
    position: relative;
    background-color: black;
}

.wavy-border {
    width: 100vw;
    height: 200px;
    background-color: #040404;
    position: relative;
    clip-path: polygon(0 20%,
            10% 25%,
            20% 15%,
            30% 25%,
            40% 20%,
            50% 25%,
            60% 15%,
            70% 25%,
            80% 20%,
            90% 25%,
            100% 15%,
            100% 100%,
            0 100%);
}

.footer-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-img img {
    padding-top: 10px;
    top: 25%;
    position: absolute;
    width: 200px;
}

.connects {
    display: flex;
    align-items: center;
    justify-content: center;
}

.connects ul {
    top: 50%;
    position: absolute;
    display: flex;
}

.end {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 80%;
    color: white;
}