@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500&family=Montserrat:wght@500&display=swap');

*{
    box-sizing: border-box;
    background-color: #1A1A40;
}

body{
    font-family: "Montserrat", sans-serif;
    color: white;
}

  /* menu */
  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    padding: 28px 20px;
    position: relative;
    user-select: none;
    float: left;
  }
  
  .header .menu-icon .navicon {
    background: white;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 500px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
 
/* Start of Nav Bar Styling */

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
  }
  
li, a, button{
    font-weight: 500;
    font-size: 16px;

    display: block;
    padding: 20px 20px;
    text-decoration: none;
    color: white;
    
}

.cta{
    position:absolute;
    top:5px;
    right:5%;

}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    width: 100%;
    position: relative;
    z-index: 9999;
    opacity: 0.9;
    width: 100%; 
}

.menu{
    list-style: none;
}

.menu li{
    display: inline-block;
    padding: 0px 20px;
    transition: all 0.3s ease 0s;
    text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover{
    color: #FA58B6;
}

button{
    padding: 9px 25px;
    background-color: rgba(250,88,182,1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

button:hover{
    background-color: rgba(250,88,182,0.8);
}

/* End of Nav Bar Styling */

/* Front Landing Page Styling*/

.intro{
    margin: 250px;
}

.intro h1{
    font-size: 100px;
    font-family: "Caveat", cursive;
    cursor: default;
    text-align: center;
}

.intro p{
    cursor: default;
    text-align: center;
    line-height: 2;
}

.page-header{
    text-align: center;
    padding: 20%;
    font-family: "Caveat", cursive;
    font-size: 50px;
}

/* End of Front Landing Page Styling */

.project{
    width: 50%;
    margin: 100px auto 100px auto;
    line-height: 2;
    text-align: center;
}

.project ul {
    list-style:none;
    padding-left:0;
}

.project li{
    line-height: 1;
}

.carleton-img{
    width: 20%;
    float: left;
    margin-right: 50px;
    display: none;
}

.game-img{
    width: 50%;
}

#media{
    padding-top: 0%;
    padding-bottom: 0%;
}

@media screen and (max-width: 48rem) {

  .intro{
      margin: auto;
  }

  .intro h1{
    font-size: 50px;
    padding-top: 10%;
  }

  .project{
    width: 100%;
    margin: 0%;
    line-height: 2;
    padding-bottom: 30%;
    padding-top: 30%;
  }

  .carleton-img{
    display: none;
  }
  
  .game-img{
    width: 100%;
  }

  .menu li{
    width: 50%;
  }

}

 @media (min-width: 48rem) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
    
  }