html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-align: center;
}

body {
  background: url("assets/bg.webp") center/cover no-repeat;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: self-start;
}

.inner {
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
  height: auto;
  border-radius: 16px;
  max-width: 800px;
  backdrop-filter: blur(32px);
  border: 1px solid rgba(161, 194, 208, 0.2);
  display: flex;
  justify-content: center;
  align-items: center; 
  flex-direction: column;
  padding: 32px 104px 72px;
}

#title {
    text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.25);
    font-size: 59px;
    color:white;
    max-width: 700px;
}

#subtitle {
    font-size:32px;
    color:white;
    text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.25);
}

.logo {
  background: white;
  padding: 16px;
  width: 140px;
  border-radius: 22px;
  box-shadow:
    0 1.46px 4.39px 1.46px rgba(0, 0, 0, 0.15),
    0 1.46px 2.93px 0 rgba(0, 0, 0, 0.3);
}

.logo img {width: 100%;}

.buttons img {height:60px}

.buttons {display: flex; flex-direction: row; gap:24px}

@media (max-width:1000px){
  #title {font-size:48px}
  #subtitle {font-size: 28px}
}

@media (max-width:767px){
  #title {font-size:32px}
  #subtitle {font-size: 24px}
  .buttons {flex-direction: column}
  body {padding:32px}
  .inner {padding: 32px 16px}
}