*{
  margin: 0;
  padding: 0;
}

body {
  background-image: url(./assets/future.gif);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto 105%;
  background-attachment: fixed;
  width: 50%;
  margin: auto;
  text-align: center;
  height: 100vh;
}


h4 {
  display: flex;
  justify-content: center;
  color: #FFFF;
  font-family: 'Roboto', sans-serif;
  padding-top: 10px;
}

ul li a {
  display: flex;
  color: #ffffff; 
  text-shadow: black 0.1em 0.1em 0.2em;
  border: 1px solid rgba(108, 105, 105, 0.549);
  border-radius: 8px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: rgba(195, 0, 255, 0.179);
  margin: 20px;
  text-decoration: none;
  font-size:large;
  font-family: 'Roboto', sans-serif;
}

ul li a:hover {
  background-color: rgba(64, 3, 83, 0.209);
  transition: 0.5s;
}

.img {
  display: flex;
  justify-content: center;
  height: 140px;
  padding-top: 10px;
}

.social-links {
  font-size: 150%;
  padding: 10px;
}

.social-links a {
  color: #FFFF;
  text-decoration: none;
}

.social-links a :hover {
  background-color: #cccccc64;
  border-radius: 50%;
  transition: 0.5s;
}


@media (max-width: 768px) {
  body {
    width: 100%;
    background-size: cover;
  }
}


@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  h4 {
    font-size: 18px;
  }

  ul li a {
    font-size: 14px;
    height: 40px;
  }
}