* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #FFFFFF;
  font-size: 24px;
  font-family: Roboto;
  font-weight: 100;
  /* border: 0.5px solid #FFFFFF; */

}

.frame {
    background-color: black;
    padding: 0em 2em;
}

.navbar-container {
    width: 100%;
    position: fixed;
    top: 0;
    /* border: 0.5px solid #F8AD62; */
    /* background-color: black; */
}

.navbar{
    display: flex;
    justify-content: flex-end;
    padding: 0em 4em;
}

/* .login-container {
        margin: 0em 2em;
} */

.join {
    font-weight: 300;
    margin-left: 2em;
    padding: 1.5em 0em;
}
.login {
    font-weight: 300;
    margin-left: 2em;
    padding: 1.5em 0em;

}

.section-container {
}

.brand {
    font-size: 4em;
    font-weight: 700;
    margin-top: 1.5em;
}

.slogan-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2em;
}
.slogan {
    font-size: 2em;
    font-weight: 300;
    color: #F8AD62;
}

@keyframes cursor-blink {
    /* 50% {
      opacity: 0;
    } */
    0% {background: transparent}
    50% {background: #FFFFFF}
    100% {background: transparent}
  }

/* .cursor {
    height: 1.8em;
    width: auto;
    position: relative;
    left: 0.25em;
    top: 0.15em;
    /* animation: blinker 5s linear infinite; */
    /* animation: cursor-blink 2s steps(2) infinite; */
    /* -webkit-animation: blink 0.8s infinite; */
#cursor {
    background: #FFFFFF;
    /* line-height: 2em; */
    /* margin-left: 0.5em;
    margin-top:  */
    position: relative;
    left: 0.25em;
    top: 0.15em;
    -webkit-animation: cursor-blink 1s infinite;
    width: 0.1em;
    height: 2em;
    }


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

.left-panel {
    max-width: 60%;
    min-width: 30%
}

.one-line-explainer {
    font-size: 2.667em;
    font-weight: 300;
}

.button-row {
    display: flex;
}

.text-button {
    color: #989898;
    font-weight: 700;
}

.text-button-spacer {
    color: #989898;
    font-weight: 700;
    margin: 0em 0.5em;
    margin-bottom: 2em;
}
.call-to-action-button-container {
    display: flex;
    justify-content: flex-start;
}

.call-to-action-button {
    color: #F8AD62;
    border: 1px solid #F8AD62;
    padding: 0.25em 1em;
    border-radius: 0.25em;
}

.right-panel {
    width: 100%;
    display: flex;
    justify-content: center;
}

.transformer-container {
    border: 0.5px solid #F8AD62;
}

.transformer {
    width: 100%;
    min-height: 10em;
    max-height: 20em;

    /* height: 20em; */
    width: auto;
}

/* manual resize */
@media only screen and (min-width: 2168px) {
    * {
        font-size: 32px;
      }
}

/* laptop breakpoint */
@media only screen and (min-width: 2167px) {
    * {
        font-size: 24px;
      }
}


/* tablet breakpoint */
@media only screen and (max-width: 850px) {
    * {
        font-size: 16px;
      }
      .transformer-container {
        visibility: none;
      }
}

/* mobile breakpoint */
@media only screen and (max-width: 412px) {
    * {
        font-size: 16px;
      }
}
