* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: #FFF;
  font-family: 'Roboto',
  sans-serif;
}
.container {
  min-height: 100vh;
  width: 100vw;
  background: linear-gradient(#0009, #0009), url(img/gc.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}
.title {
  font-size: 42px;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px #000;
}
.subtitle {
  font-size: 24px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px #000;
}

.logo {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 15px;
  left: 15px;
  border: 2px solid #FFF;
  box-shadow: 1px 1px 3px #0005;
  font-size: 24px;
  font-family: 'Playfair Display',
  serif;
}

@media only screen and (max-width: 768px) {
  .title {
    font-size: 36px;
    margin-bottom: 36px;
  }
  .subtitle {
    font-size: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .subtitle {
    font-size: 16px;
  }
}