@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", serif;
  color: white;
}

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

body {
  height: 100vh;
  background: rgb(3,64,94);
  background: linear-gradient(180deg, rgba(3,64,94,1) 40%, rgba(13,33,44,1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

main{
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.logo-icon{
  padding: 2rem 0 2rem;
  width: auto;
}

.logo-icon img {
  width: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.title-text {
  text-align: center;
}
.title-text h1 {
  font-weight: 400;
  font-size: 1.8rem;
}
.title-text h2 {
  margin-top: 0.4rem;
  font-weight: 300;
  font-size: 1rem;
}
.buttons{
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.buttons img {
  width: 230px;
}

.buttons a{
  cursor: pointer;
}
footer {
  text-align: center;
  font-size: 1rem;
  padding: 1rem;
  width: 100%;
}
