/* --- start of CSS reset --- */

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
  background: transparent;
  font-family: inherit;
}

a {
  text-decoration: none;
}

a img {
  border: none;
}

button,
a {
  cursor: pointer;
  color: inherit;
}

textarea {
  resize: none;
}

button,
textarea,
select {
  appearance: none !important;
  border-radius: 0;
}

/* --- end of CSS reset --- */
body {
  background-image: url(bg.jpg);
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container {
  position: absolute;
  top: 25%;
  left: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 50%;
  width: 50%;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 7px 10px 38px -4px rgba(0, 0, 0, 0.75);
}

h1 {
  font-size: 60px;
  padding-bottom: 3rem;
  padding-top: 1rem;
}

p {
  font-size: 25px;
  padding-bottom: 2rem;
  line-height: 40px;
}

a {
  font-size: 20px;
  padding-bottom: 2rem;
  transition: all ease 0.3s;
}

.img-container {
  max-width: 100%;
}

img {
  max-width: 100%;
}

a:hover {
  color: rgb(72, 170, 183) !important;
  transition: all ease 0.3s;
}

@media screen and (max-height: 1000px) {
  h1 {
    font-size: 50px;
    padding-bottom: 1rem;
  }

  p {
    font-size: 20px;
    padding-bottom: 1rem;
    line-height: 30px;
  }
  a {
    font-size: 18px;
    padding-bottom: 1rem;
  }
  .container {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 900px) {
  h1 {
    font-size: 40px;
    padding-bottom: 1rem;
  }

  p {
    font-size: 25px;
    padding-bottom: 1rem;
    line-height: 30px;
  }
  a {
    font-size: 18px;
    padding-bottom: 1rem;
  }
  .container {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 20px;
    padding-bottom: 1rem;
  }

  p {
    font-size: 12px;
    padding-bottom: 1rem;
    line-height: 13px;
  }
  a {
    font-size: 12px;
    padding-bottom: 1rem;
  }

  .container {
    padding: 1rem;
    height: auto;
  }
}
