@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Bad+Script&display=swap');
*, ::after, ::before {
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  background-image: url(bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: 'Bad Script', cursive;
  color: rgb(65, 65, 65);
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.5;
}

.main {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

h3 {
  color: white;
  font-size: 32px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  h3 {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) {
  h3 {
    font-size: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  h3 {
    font-size: 100px;
  }
}