* {
  margin: 0;
}
:root{
  --dark-color: rgba(23,12,85,1);
  --light-color: rgba(247,238,231,1);
  --weekend-color: #2C2C2B;
}

@font-face {
  font-family: 'Lexend', sans-serif;
  /* src: url("/fonts/Kobe.woff") format('woff'); */
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-size: 18px;
  font-family: 'Lexend';
  color: var(--light-color);
  background-color: var(--dark-color);
  transition: 0.6s background ease-in-out;
}

body.dark-theme {
  background-color: var(--dark-color);
  color: var(--light-color);
}

body.dark-theme a {
    color: var(--light-color);
}

body.light-theme {
  background-color: var(--light-color);
  color: var(--dark-color);
}

body.light-theme a {
  color: var(--dark-color);
}

body.weekend-theme {
  background-color: var(--weekend-color);
  color: var(--light-color);
}

body.weekend-theme a {
  color: var(--light-color);
}


.top{
  display: flex;
  padding:  36px;
  justify-content: space-between;
  flex-direction: column-reverse;
  align-items: flex-end;
}

.status {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 14px;
}

.status div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

div .indicator {
  margin-right: 6px;
}

div .btn {
  margin-left: 6px;
}

.indicator {
  width: 6px;
  height: 6px;
  border-radius: 100px;
}

.mode{
  cursor: pointer;
  /* text-align: right; */
  border-radius: 4px solid white;
}


h1 {
  font-size: 96px;
  font-weight: 700;
  margin: 0;
}

h2 {
  font-size: 60px;
  font-weight: 300;
  margin: 0;
}

h2 a {
  font-size: 60px;
}

p {
  margin: 0;
  font-weight: 400;
}

header{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70%;
}

.content {
  display: flex;
  align-items: center;
  padding: 36px;
}

#verbatim {
  font-size: 36px;
  line-height: 54px;
}

i {
  font-weight: 200;
  font-style: italic;
}

footer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  height: 10%;
  padding: 36px;
}

.columns {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 40%;
}

.column {
  display: flex;
  justify-content: space-between;
}

.button {
  text-decoration: none;
  margin-right: 36px;
}

a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

a:visited {
  color: var(--dark-color);
  text-decoration: none;
}

a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #84E6F8;
  transition: width 0s ease, background 0.7s ease;
}

a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #84E6F8;
  transition: width 0.7s ease;
}

a:hover:before {
  width: 100%;
  background: #84E6F8;
  transition: width 0.7s ease;
}

a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

/* Mobile */
@media screen and (max-width: 800px) {
  body {
    max-height: -webkit-fill-available;
  }
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 24px;
  }

  h2 a {
    font-size: 24px;
  }

  .top{
    flex-direction: column-reverse;
    padding: 24px;
  }

  header{
    width: 100%;
    margin-top: 12px;
  }

  .content {
    padding: 24px;
  }

  main {
    height: 90%;
  }

  #verbatim {
    font-size: 20px;
    line-height: 30px;
  }

  footer{
    padding: 24px;
  }

  .button {
    margin-right: 0;
    width: 100%;
  }

  .columns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }

  .column {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
  }

  .status {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 12px;
  }

  div .btn {
    margin-left: 6px;
  }

}