* {
  box-sizing: border-box;
  font-family: heebo, sans-serif;
  color: white;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  background-color: #232628;
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

h1,
h2,
a {
  outline: none;
  font-family: "Proza Libre", sans-serif;
  font-size: 1.1rem;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: white;
}

h3 {
  font-size: 1rem;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  border-style: none;
  background-color: #24a5f9;
}

button:hover {
  cursor: pointer;
}

input,
textarea {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background-color: #1a1c1e;
  font-size: 1rem;
  border-radius: 5px;
  border-style: none;
}

textarea {
  resize: none;
}

input:focus,
textarea:focus {
  outline: none;
}

::placeholder {
  color: #708e97;
}

@media screen and (min-width: 500px) {
  main {
    padding: 0;
  }

  ::-webkit-scrollbar {
    width: 16px;
  }

  ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
  }

  ::-webkit-scrollbar-thumb {
    background: rgba(50, 50, 50, 0.4);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #888;
  }
}
