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

html,
body {
  font-family: "Google Sans", sans-serif;
  background-color: #dce0e4;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 900px;
  height: 600px;
  background-color: #ffffff;
  padding: 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.1),
      0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 100px;
  margin-top: auto;
}

.title {
  max-width: 500px;
  font-size: 50px;
  color: #1d2d44;
}

.first-word {
  color: #1f80ff;
  font-style: italic;
  text-decoration: underline;
  font-weight: bolder;
  
}

.subtitle {
  color: #012a4a;
  font-size: 25px;
}

.text {
  font-size: 15px;
  color: #161a1d;
  margin-top: auto;
}

.text a {
  text-decoration: none;
  color: #ffffff;
  font-style: italic;
  font-weight: bold;
  padding: 3px 5px;
  border-radius: 5px;
  background-color: #386cc7;
}

@media (max-width: 768px) {
  html,
  body {
    padding: 10px;
    overflow: hidden;
  }

  .container {
    width: 100%;
    height: 70%;
    padding: 40px 30px;
    gap: 20px;
  }

  .logo {
    margin-top: auto;
    width: 80px;
  }

  .title {
    font-size: 40px;
  }

  .subtitle {
    font-size: 20px;
  }

  .text {
    margin-top: auto;
  }
}