/* CSS Reset or Normalize */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
  font-family: Montserrat;
  src: url(fonts/Montserrat-Regular.ttf);
}

html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

body {
    font-family: sans-serif;
    line-height: 1.5;
    background-color: #2c2f54;
    color:#fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    overflow: hidden;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  padding: 25px;
}

.stars {
  display: flex;
  flex-direction: column;
}

.star {
  position: absolute;
}

.lrgStar {
  max-width: 50px;
  width: 100%;
  top: 50px;
  left: 100px;
}

.smlStar {
  max-width: 25px;
  width: 100%;
  top: 125px;
  left: 175px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-width: 750px;
  width: 100%;
}

.copy {
  display: flex;
  flex-direction: row;
  max-width: 500px;
  width: 100%;
  justify-content: space-between;
}

.copy {
  padding-top: 50px;
}

.sundial {
  max-width: 200px;
  width: 100%;
}

.sundial {
  position: absolute;
  bottom: -100px;
  right: -200px;
  max-width: 750px;
  width: 100%;
}

/* MOBILE STYLES */
@media screen and (max-width:1200px) {
  .sundial {
    max-width: 500px;
  }
}
@media screen and (max-width:1012px) {
  .lrgStar {
    left: 25px;
  }

  .smlStar {
    left: 110px;
  }

  .copy {
    flex-direction: column;
    align-items: center;
  }

  .copy p:nth-child(2) {
    display: none;
  }

  .copy p:nth-child(3) {
    padding-top: 25px;
  }
}

@media screen and (max-width: 575px) {
    .sundial {
      bottom: -20px;
      right: -60px;
      max-width: 500px;
  }
}