::-webkit-scrollbar {
  display: none;
}
body {
  width: 100vw;
  margin: 0;
  color: #ffffff;
  background-color: #1b1b1b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header {
  margin: 0;
  width: 100vw;
  height: 20vh;
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: center;
  background-color: #1b1b1b;
}
.logo {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0px;
  left: 0px;
  margin: 0;
}
img {
  height: 40vh;
  margin-right: 80px;
  margin-left: 10px;
}
main {
  display: flex;
  justify-content: center;
  width: 100vw;
  background-color: rgb(48, 48, 55);
  background-image: url(../img/backgroundimg.jpeg);
  background-size: cover;
  padding-top: 10px;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
h1 {
  margin: 0;
  margin-top: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 90px;
  margin-bottom: 30vh;
  margin-right: 30px;
  margin-left: 30px;
}
h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  text-align: center;
  margin: 20px;
  margin-top: 40px;
}
p {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  align-self: flex-start;
  margin-left: 80px;
}
.textblock {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.block {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 40vw;
  flex-direction: column;
  height: 60vh;
  margin: 10px;
  background-color: #1b1b1b;
  border-radius: 10px;
}
.inblock {
  display: flex;
  flex-direction: row;
}
button {
  width: 140px;
  height: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 1000;
  background-color: #b22222;
  border: none;
  border-radius: 10px;
  margin-top: 20px;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #8b1a1a;
}

footer {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  height: 15vh;
  background-color: #1b1b1b;
}

footer p {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  margin-top: 40px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 60px;
    text-align: center;
  }
  .logo {
    height: 50px;
    width: 50px;
  }
  h2 {
    font-size: 18px;
  }
  .textblock {
    width: 80vw;
  }
  .block {
    width: 90vw;
  }
  img {
    margin-right: 20px;
    margin-left: 0px;
    height: 30vh;
  }
  p {
    margin-left: 20px;
    margin-right: 20px;
  }
  button {
    width: 120px;
    height: 35px;
  }
  footer p {
    text-align: center;
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 16px;
  }
  .textblock {
    width: 90vw;
  }
  .block {
    width: 90vw;
  }
  img {
    margin-right: 10px;
    margin-left: 0px;
    height: 30vh;
  }
  p {
    margin-left: 20px;
  }
  button {
    width: 100px;
    height: 30px;
  }
  footer p {
    text-align: center;
    margin-right: 20px;
    margin-left: 20px;
  }
}
