@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main Styling */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

p{
  margin: 10px 0;
  line-height: 1.7em;
  font-weight: 200;
}

a {
  text-decoration: none;
}

hr {
  margin: 20px 0;
}

/* Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.large {
  font-size: 20px;
}

.display-1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 500;
}

.btn {
  background: #fff;
  color: #000;
  display: inline-block;
  font-size: 15px;
  padding: 12px 23px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 4px;
}

.btn:hover {
  background: #4d4d4d;
  color: #fff;
}

/* Navbar */
/* nav {
  height: 10vh;
} */

.logo {
  color: #fff;
  text-transform: uppercase;
  font-size: x-large;
  font-weight: bold;
  padding: 20px 0;
}

/* Main */
main {
  background: url('images/background.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  color: #fff;
}

main div {
  width: 65%;
  padding-top: 120px;
}

main .btn {
  margin-top: 20px;
}

/* Responsive */
@media (max-width:768px) {
  .display-1 {
  font-size: 1.5rem;
}

  .main-box {
    width: 100%;
  }

  main div {
    width: 100%;
  }
}