@import url('https://fonts.googleapis.com/css2?family=Arvo&display=swap');

body {
  margin:0px;
  padding:0px;
  font-family: 'Arvo', Courier, monospace;
  background: url('../img/background.jpg');
  height:100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#logo {
  text-align: center;
}

img {
  margin:0px;
  padding:0px;
  max-width: 80vw;
  min-width: 20vw;
  max-height: 50vh;
  flex-grow: 0;
}

ul {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

ul li {
  min-width: 30%;
  font-size: 2rem;
  padding:0.2rem;
  flex: 1;
  display:flex;
  align-items: center;
}

ul li a {
  color:white;
  text-decoration: none;
}

i {
  margin-right:0.5rem
}

ul li .network {
  color: #ca9752;
}

ul li .network::after {
  content: ' : '
}

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

  body {
    justify-content: center;
  }

  ul li {
    font-size: larger;
    padding: 1rem 0rem;
  }

  ul {
    flex-grow: 0;
    margin-top:2rem;
  }

}

@media screen and (min-width: 1500px) {
  body {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  #logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  ul {
    flex-grow:0;
    height:700px;
  }

  ul li {
    flex-grow: 0;
    text-align: left;
  }
}