/* Font */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");

@font-face {
  font-family: "MyWebFont";
  src: url("fonts/adeston.ttf"),
    url("fonts/adeston.ttf")
      format("truetype");;
}

/* Design */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background-color: #E4DDD3;
  cursor: url("pointers/mpctime.png")
      64 64,
    auto;
}

body {
  color: #F0EEE8;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  padding: 1rem;
}


.main {
  max-width: 1200px;
  margin: 0 auto;
}

/* width */
::-webkit-scrollbar {
  width: 10px;

}

/* Track */
::-webkit-scrollbar-track {
  background: #E4DDD3; 


}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #C1887A; 

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF; 
 border: 1px solid #C1887A;
}


h1 {
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  font-family: "MyWebFont";
  text-shadow: 2px 2px #C1887A;
  overflow: auto;
  position: relative;
}

h3 {
  font-family: "MyWebFont";
  color: #141204;
}


.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards_item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .cards_item {
    width: 33.3333%;
  }
}

.card {
  background-color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 3px 3px #C1887A;
}

.card_content {
  padding: 1rem;
  background: white;
}

.card_title {
  color: black;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
}

.card_text {
  color: black;
  font-size: 17px;
  line-height: 0.5;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

/*---------------------JANUARY colorschemes---------------------*/
#jancolor {
  background-color: #C9A2AA;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------FEBRUARY colorschemes---------------------*/
#febcolor {
  background-color: #74121D;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------March colorschemes---------------------*/
#marcolor {
  background-color: #AAB292;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------APRIL colorschemes---------------------*/
#aprcolor {
  background-color: #E04755;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------MAY colorschemes---------------------*/
#maycolor {
  background-color: #D1B2D1;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------JUNE colorschemes---------------------*/
#juncolor {
  background-color: #F3CD91;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------JULY colorschemes---------------------*/
#julcolor {
  background-color: #B0D0CD;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------AUGUST colorschemes---------------------*/
#augcolor {
  background-color: #F57F39;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------SEPTEMBER colorschemes---------------------*/
#sepcolor {
  background-color: #D8317F;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------OCTOBER colorschemes---------------------*/
#octcolor {
  background-color: #E6AE8C;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------NOVEMBER colorschemes---------------------*/
#novcolor {
  background-color: #AE8681;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------DECEMBER colorschemes---------------------*/
#deccolor {
  background-color: #265A4A;
  height: 350px;
  width: 350px;
  max-width: 100%;
  vertical-align: middle;
  border: 5px solid white;
}

/*---------------------option year---------------------*/
select {
  width: 90px;
  padding: 1px;
  border: 0 !important;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.5;
  margin-bottom: 1.25rem;
}

/*---------------------statement---------------------*/


.bold {
  color: black !important;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
}


span {
  cursor: pointer;
  float: right;
  color: #C1887A !important;
  font-size: 24px;
  font-family: "MyWebFont";
}

.span-text:hover {
  color: white !important;
}

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #C1887A;
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 15%;
  margin-top: -30px;
  font-size: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
  height: 90%;
  padding: 20px;
  overflow: hidden;
  overflow-y: scroll;


}

@media (max-width: 1200px){
  .overlay-content{
    width: 80%;
    font-size: 5vw;
    top: 5%;



  }
}

@media (max-width: 1200px){
  .bold{
    font-size: 5vw;



  }
}

@media (max-width: 1200px){
  #about {
    font-size: 8vw;



  }
}


@media (max-width: 1200px){
  #paint {
    font-size: 120px;



  }
}




.overlay a {
  margin-top: 20px;
  margin-right: 55px;
  text-decoration: none;
  font-size: 32px;
  color: #E4DDD3;
  display: block;
  transition: 0.3s;
  float: right;
}

.overlay a:hover,
.overlay a:focus {
  color: #ffffff;
}


  .overlay a {
    font-size: 32px;
    font-family: "MyWebFont";
  }
}

.material-icons:hover {
  color: #141204 !important;

}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 60px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/*---------------------bottom nav bar---------------------*/

.navbar {
  overflow: hidden;
  background-color: #C1887A;
  position: fixed;
  bottom: 0;
  width: 100%;
  right: 0px;
}

.navbar a {

  display: block;
  color: #F0EEE8;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-family: "MyWebFont";
}
