/* Globals */
@font-face {
  font-family: "SquidgyBoi";
  src: url("../fonts/SquidgyBoibySTG.ttf") format("truetype");
}

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

h1 {
  font-family: "ByMineHand", sans-serif;
}

h2 {
  font-family: "SquidgyBoi", sans-serif;
}

body {
  height: 100vh;
  background-color: #FFFCF0;
  background-image: url("../images/flowercover.png");
  background-repeat: repeat;
  background-size: 50rem 50rem;
}

/* Header */
 .navbar{
  height: auto;
  width: 100%;
  padding-top: 3rem;
  display: block;
}

.desktopbanner{
  display: none;
}

.logo{
  max-width: 100%;
  height: auto;
}

/* Body */
a{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5rem;
  color: black;
  text-decoration: rgb(138, 80, 165) underline wavy;
}

a:hover{
  color: rgb(174, 82, 211);
  text-decoration: rgb(201, 161, 223) underline wavy;
}

a:active{
  color: rgb(122, 28, 163);
  text-decoration: rgb(148, 80, 165) underline wavy;
}

.buttons img{
  width: 15rem;
  margin: 2rem 4rem;
}

footer img{
  width: 100%;
}

footer h2{
  font-size: 1.25rem;
  text-align: center;
}

/*  Media Queries */

@media (min-width: 760px) {
  .desktopbanner{
    display: initial;
    max-width: 100%;
    height: auto;
  }

  .mobilebanner{
    display:none;
  }

  a {
    margin: 1rem;
  }
  .buttons{
    display: flex;
    flex-direction: row;
    
  flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    max-width: 100vw;
  }

  .buttons img{ 
    width: 8rem;
  }
}