* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}
main {
  height: 100vh;
  width: 100vw;
  position: relative;
}
section {
  height: 100%;
  width: 100%;
  background-image: url(images/meditation.webp);
  background-position: left bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.container {
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #01a4bb, #00bcd466);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
}
.logo-wrapper {
  margin-top: 2rem;
}
.title h1 {
  font-size: 3.5rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
.theme-btn {
  text-decoration: none;
  padding: 1rem 1.5rem;
  border: 1px solid #fff;
  background-color: #01a4bb;
  color: #fff;
  border-radius: 1rem;
}
.lead {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 1rem;
}
.actions {
    display: block;
    margin-top: 2rem;
}
.text-center {
    text-align: center;
}