@import url("./dropdown.css");
@import url("./font.css");
@import url("./map/map.css");
@import url("./map/marker.css");
@import url("./jobs.css");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    background-color: #24252A
  }

  nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

nav ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 50px;
      transition: background 0.5s;
  }
  nav ul li a:hover {
      background: #fff;
      color: #24252A;
      text-decoration: underline;
  }

  #discord {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background 0.5s;
    margin-left: 3vw;
  }
  #discord:hover {
    background: #7289da;
    color: #fff;
  }

  h1.title {
    color: #fff;
  }
  h2.title {
    font-size: 34px;
    margin: 0px;
    padding: 0;
  }

  ul.info li.title {
    font-size: 26px;
    margin: 0px;
    padding: 0;
  }

  .container {
    display: flex;
    height: 100vh;
    padding: 10% 2%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  } 

  .container h2 {
    width: 100%;
  }

  .stream {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .stream h2 {
    width: 100%;
  }

  .wrapper {
    display: flex;
    width: 100%;
  }

  div.listes {
    display: flex;
  }
