* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0px;
  background-color: #5e068a;
  overflow-x: hidden;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #5e068a;
  height: 100px;
  .title {
    display: flex;
    color: white;
    align-items: center;
    font-size: 20px;
  }
  .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 450px;
    max-width: 100%;
    a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
      &:hover {
        color: rgb(206, 101, 255);
      }
    }
    .link-rounded {
      border-radius: 25px;
      background-color: #13d353;
      padding: 10px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color color 0.3s ease;
      &:hover {
        background-color: #7cf17c;
        color: #4b0082;
      }
    }
  }
}
.content {
  /* padding: 20px; */
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.purple-sponsors {
  border-bottom: solid 5px #6d1c94;
  padding: 10px 20px;
  border-radius: 25px;
  text-align: center;
  width: fit-content;
  margin: 0 auto 20px auto;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: 300px;
  display: flex;
  justify-content: center;
  font-size: 20px;
  height: 100px;
  img {
    width: 100px;
    &:hover {
      transform: translateY(-5px);
      transition: all 0.3s ease;
    }
  }
}

header {
  background-image: url(../img/image.png);
  background-repeat: no-repeat;
  background-size: 100vw auto;
  height: 40vw;
  padding: 20px;
  h1 {
    color: white;
    font-size: 48px;
    margin-top: 100px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  h2 {
    color: white;
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }
}
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}
.contact-us {
  background-color: #6d1c94;
  padding: 20px;
  text-align: center;
  width: 100vw;
  border-radius: 25px 25px 0 0;
  h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
  }
  .contact-info {
    list-style-type: none;
    padding: 0;
    color: #ffffff;
    li {
      margin: 5px 0;
      font-size: 18px;
      a {
        color: #6ecf8b;
        text-decoration: none;
        &:hover {
          text-decoration: underline;
        }
      }
    }
  }
}
