
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed");
/*resets all the padding and margins to 0 */
* {
  margin: 0;
  padding: 0;
}
body {
    font-family: "Roboto Condensed", sans-serif;
    margin: 0;
    background: #eee;
    height: auto;
  }
  h1 {
    font-weight: 400;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0;
  }
  h2 {
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: capitalize;
    margin: 0;
  }
  img {
    display: block;
    width: 100%;
    
    
  }
  main {
    max-width: 1000px;
    margin: auto;
    box-shadow: 30px 0px 40px rgba(0, 0, 0, 0.3),
      -30px 0px 40px rgba(0, 0, 0, 0.3);
  }
#landing {
    background: rgb(204, 204, 204);
  }
  
  #landing-text {
    display: flex;
    flex: 0 1 40vw;
    height: 40vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  #landing-text h1 {
    text-shadow: 2px 2px 10px rgb(34, 34, 34);
  }
  #landing-text h2 {
    color: #888;
  }
  #project-links {
    display: flex;
    flex: 0 1 40vw;
    height: 40vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .btn {
    padding: 0.5rem 2rem;
    border: 2px solid #888;
    display: inline-block;
    margin: 2rem 0 0;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    transition: background 500ms ease;
  }
  .btn:hover {
    background: #9e9e9e;
    color: #fff;
  }
  #lotto {
    border: 2px solid blueviolet;
  }
  #proj2 {
    border: 2px solid rgb(43, 226, 195);
  }
  #proj3 {
    border: 2px solid rgb(147, 226, 43);
  }