*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  font-size: 1.6rem;
  background: linear-gradient(-45deg, #0D1536, #0A0C11, #0D1536, #0A0C11);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;

}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.lightspeed-main {
    display: flex;
    flex-direction: column;
    max-width: 510px;
    margin: 4%;
}

@media only screen and (max-width: 600px) {
  .lightspeed-main {
    margin: 8%;
  }
}

.lightspeed-logo {
    width: 100%;
    margin-bottom: 40px;
}

.lightspeed-main__content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    color: #fff;
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .lightspeed-main__content {
    flex-direction: column;
}
}

.lightspeed-main__content .lightspeed-arrow {
  height: 10px;
  margin-right: 20%;
  margin-top: 4px;
}

@media only screen and (max-width: 600px) {
  .lightspeed-main__content .lightspeed-arrow {
    margin-right: 75%;
  }  
}

.lightspeed-main__content--left {
    width: 20%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;  
}

.lightspeed-main__content--right {
    width: 80%;
    font-weight: 200;
  }
  
@media only screen and (max-width: 600px) {
  .lightspeed-main__content--left, .lightspeed-main__content--right {
    width: 100%;
  }
}


.lightspeed-main__content--director {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin-top: 40px;
}

@media only screen and (max-width: 600px) {
  .lightspeed-main__content--director {
    align-items: flex-start;
    justify-content: flex-start;
}
}



.lightspeed-main__director--name {
  font-size: 32px;
  font-weight: 300;
}

.lightspeed-main__director--title {
  font-size: 18px;
  font-weight: 300;
  color: #87A7C3;
}

@media only screen and (max-width: 600px) {
  .lightspeed-main__director--name {
    font-size: 24px;
    font-weight: 300;
  }
  
  .lightspeed-main__director--title {
    font-size: 16px;
    font-weight: 300;
    color: #87A7C3;
  }
}


.lightspeed-main__content--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

@media only screen and (max-width: 600px) {
  .lightspeed-main__content--cta {
    align-items: flex-start;
    justify-content: flex-start;
  }
}


.lightspeed-main__content--cta__button {
  display: flex;;
  align-items: center;
  justify-content: center;

  border: 1px solid #fff;
  padding: 15px 25px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.5s ease-out;
  margin-top: 14px;
}

.lightspeed-main__content--cta__button:hover {
  background: #fff;
  color:#0E1536;
}

.lightspeed-main__content--cta__button .lightspeed-arrow {
  height: 18px;
  margin-left: 10px;
  margin-top: 0px;
}