::-webkit-scrollbar {
  display: none;
}
body {
  width: 100vw;
  margin: 0;
  background-color: #000000;
  color: white;
}
header {
  margin: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: center;
  background-image: url(../img/backgroundimg.jpeg);
  background-size: cover;
}

h1 {
  margin: 0;
  margin-top: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 90px;
  margin-bottom: 30vh;
}

a {
  color: black;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(222, 53, 53);
  border-radius: 10px;
  padding: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.links {
  width: 250px;
  display: flex;
  justify-content: space-between;
}

p {
  margin-top: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  height: 15vh;
  background-color: rgb(24, 24, 24);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 768px) {
  header {
    background-image: url(../img/backgroundimg-responsiv.jpg);
  }
  h1 {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 40px;
  }
}
