@import "https://fonts.googleapis.com/css?family=Lato:400,700";

html {
  font-size: 16px;
  font-family: "Lato", sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  top: 0;
  padding: 5px;
}

#logo-description {
  font-size: 2.5rem;
}

#nav-bar > ul {
  display: flex;
  min-width: 300px;
  justify-content: space-between;
}

#header-img {
  max-width: 100px;
  border-radius: 200px;
  box-shadow: 5px 5px 10px gray;
  margin: 20px;
}

#website-name {
  font-size: 4rem;
}

a {
  color: #000000;
  border: 2px none;
  border-radius: 20px;
  padding: 10px;
  background-color: rgb(181, 230, 89);
  text-decoration: none;
  box-shadow: 6px 3px 5px gray;
}

.link-bullet {
  list-style: none;
}

#main-content {
  margin-top: 165px;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rest-content {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
}

#video {
  max-width: 560px;
  width: 100%;
}

#about {
  font-size: 1.5rem;
  max-width: 1000px;
}

#tiers {
  display: flex;
  justify-content: space-evenly;
  width: 1000px;
}

.subtiers{ 
  display: grid;
  grid-template-rows: 1fr 2fr;
  align-items: center;
  font-size: .8em;
  border: 2px solid;
  box-shadow: 10px 10px 30px gray;
  border-radius: 10px;
  padding: 10px;
  min-width: 251px;
  color: rgb(55,55,55);
  }

.email-content {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  max-width: 1000px;
  width: 100%;
}

#footer {
  color: tomato;
}

@media (max-width: 1000px) {
  html {
    font-size: 0.8rem;
  }
  
  .subtiers {
    font-size: 0.8em;
    padding: 10px;
    min-width: 120px;
  }
   
  #tiers {
    width: 100vw;
  }
  
  #header {
    width: 100vw;
    font-size: 1rem;
  }  
}