* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: #fcfdff;
  line-height: 1.6;
}

header {
  height: 20vh;
  background-color: #030303;
}

header img {
  height: 4rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
}

#showcase {
  background-image: url(/img/background2.jpg);
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

#showcase h1 {
  font-size: 50px;
  line-height: 1.2;
}

#showcase p {
  font-size: 20px;
}

#showcase #scroll-to-bottom {
  font-size: 18px;
  text-decoration: none;
  color: #030303;
  border: 1px solid #fcfdff;
  border-radius: 7px;
  padding: 2px 2px;
  margin-top: 20px;
}

#showcase #scroll-to-bottom:hover {
  background-color: #030303;
  color: #fcfdff;
  transition: 0.4s;
}

#section-a {
  padding: 5px;
  color: #030303;
  background-color: #fcfdff;
  text-align: center;
}

#section-b {
  display: flex;
}

#section-b article {
  padding: 5px;
}

#section-b .box-1,
#section-b .box-3 {
  background-color: #fcfdff;
  color: #030303;
}

#section-b .box-2 {
  background-color: #fcfdff;
  color: #030303;
}

#section-c {
  padding: 5px;
  color: #030303;
  background-color: #fcfdff;
  text-align: center;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  font-weight: bold;
}

@media (max-width: 600px) {
  #section-b {
    flex-direction: column;
  }

  #showcase h1 {
    font-size: 20px;
    line-height: 1.2;
  }

  #showcase p {
    font-size: 12px;
  }

  #section-a p {
    font-size: 12px;
  }

  #section-b p {
    font-size: 12px;
  }

  #section-c p {
    font-size: 12px;
  }
}

@media (min-width: 600px) and (max-width: 1600px) {
  #showcase h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  #showcase p {
    font-size: 18px;
  }

  #section-c p {
    font-size: 10px;
  }
}
