/* global css */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  /* overflow: hidden; */
  overflow-x: hidden;
  text-align: center;
  min-height: 100vh;

  /* display: flex;
  align-items: flex-end; */
}

a, a:hover {
  text-decoration: none;
  color: inherit;
}

/* common classes */

.main {
  width: 100vw;
  align-self: center;
  font-family: "Lucida Console";
}

.logo {
  font-size: 5em;
  margin-bottom: .25em;
  /* letter-spacing: 1.5px; */
  margin-top: 5vh;
  max-width: 80vw;
}


/* @media (max-width: 1600px) {
 .logo {
   margin-top: 15vh;
 }
} */

.logo-sub {
  font-size: 2em;
  letter-spacing: 1.2px;
}

.logo-wrapper {
  cursor: pointer;
  color: #464546;
}

/* buttons */
/* move logo to top when completely maximized */
.controls {
  position: absolute;
  top: 10px;
  right: 10px;
}
/* on most screens, move the controls to right and lower the logo */
@media (max-width: 1600px) {
  .controls {
    position: relative;
    text-align: right;
  }
}
/* on mobile screens, center the controls */
@media (max-width: 500px) {
  .controls {
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
  }
}
.signup, .signin {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  color: white;
  font-family: "Verdana";
  width: 140px;
  font-size: 1.25em;
  text-align: center;
  cursor: pointer;
}
.signup {
  /* margin: 0px 10px 0px 0px;         */
  /* border: 1px solid #00cca088; */
  background-color: #00cca0;
}
.signin {
  /* border: 1px solid ##d0e3e6; */
  background-color: #00a1d7e3;
}
.signup:hover, .signin:hover {
  color: white;
}

.green {
  color: #00cca0;
}
.blue {
  color: #00a1d7e3;
}

.big-button {
  font-family: "Verdana";
  font-size: 2.5rem;
  display: inline-block;
  padding: 10px 40px;
  /* border: 2px solid #00a1d7e3; */
  border-radius: 6px;
  color: #00a1d7e3;
  text-align: center;


}
.big-button:hover {
  color: white;
  background: #00a1d7e3;
  transition: all .25s;
}

@media (max-width: 1100px) {
  .big-button {
    color: white;
    background: #00a1d7e3;
  }
}

/* footer area */

.footer {
  width: 100vw;
  background-color: #415661;
  color: white;
  font-family: "Arial";
  margin-top: 2vh;
  /* margin-top: auto; */
  /* position: absolute;
  bottom:0; */
}

.footer-row {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  justify-items: center;
  vertical-align: middle;
  padding: 2rem 20vw;
}

@media (max-width: 1200px) {
  .footer-row {
    padding: 2rem 0;
  }
}

.footer-contact-details {
  align-self: center;
  font-size: 1.2em;
  /* padding: 2rem 10vw; */
}

@media (max-width: 500px) {
  .footer-row {
    grid-template-columns: 100%;
  }
  .footer-contact-details {
    margin: 1rem auto;
  }
}


.contact-us {
  font-size: 1.5em;
  margin-bottom: .25em;
}

.email {
  letter-spacing: 2px;
}

.footer-bottom {
  text-align: center;
  padding: 2vh;

  /* text-align: right; */
  font-weight: normal;
  /* background-color: rgb(247,247,247); */
  color: rgb(0,0,0,.5);
  color: rgb(255,255,255,.6);
}


.footer > hr {
  width: 90vw;
  border: 0;
  border-top: 1px solid rgb(255,255,255,.5);
  margin: 0 auto;
}

.footer-bottom div {
  padding: .3em;
  /* letter-spacing: 1px; */
  justify-content: center;
  vertical-align: middle;
}

.one-third {
  display: inline-block;
  width: 25vw;
}

.one-half {
  display: inline-block;
  width: 40vw;
}

.one-quarter {
  display: inline-block;
  width: 20vw;
}

@media (max-width: 800px) {
  .one-third {
    width: 80vw;
  }
  .one-half {
    width: 80vw;
  }
  .one-quarter {
    width: 80vw;
  }
}

.info {
  font-family: Tahoma;
  font-size: 2em;
  color: #222;
  align-self: center;
}

.i {
  font-size: 1.1em;
  /* margin-right: .2em; */
}
