@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400&display=swap');

/* Generic page setup */

html, body {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  background-color: #48325E;
  font-family: Rubik;
  font-size: 1.2rem;
  color: white;
}

.main {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  min-height: 100%;
  height: calc(100% - 5rem);
  min-height: calc(100% - 5rem);
}

h1 {
  font-size: 3rem;
  margin-bottom: .5rem;
}

.subtitle {
  font-size: 1.5rem;
}

.btn {
  margin-top: 3rem;
  color: white;
  background-color: #267028;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 1rem;
}

/* Navigation */

.brand-logo {
  color: inherit;
  text-decoration: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  color: inherit;
  text-decoration: none;
  padding: 1rem;
}

.main-nav a:hover {
  color:aqua;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top:1rem;
}

header img {
  width: 3rem;
}

/* Landing page */

.landing {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  height: calc(100% - 7rem);
}

.landing-image {
  align-self: stretch;
}
.landing img {
  max-height: 100%;
}

.landing .circle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  position: absolute;
  height: 27rem;
  width: 27rem;
  right: 0;
}

/* Footer */

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #182524;
  height: 5rem;
  color: white;
}

footer ul {
  list-style: none;
}

footer a {
  text-decoration: none;
  color: white;
}

footer a:hover {
  color: aqua;
}


/* Side by side columns */
.main img {
  width: 100%;
}

.text-block {
  padding-top: 5rem;
  align-self: flex-start;
}

/* Sign in box */

.signin-main {
  margin-top: 5rem;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.signin-box {
  background: #ADAFCE;
  align-self: flex-start;
  height: 30rem;
  width: 25rem;
  margin-top: 5rem;

  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 5%;
}