* {
  box-sizing: border-box;
}

header {
  padding: 20px;
  margin: 40px 0;
}

body {
  background-color: white;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400;
  font-style: normal;
}

main {
  padding-bottom: 60px;
}

.flukedude-logo {
  display: block;
  width: 66.6%;
  margin: 0 auto;
}

.flukedude-logo-desktop {
  width: 100%;
  display: none;
}

header p {
  font-size: 20px;
  padding: 50px 0 0 0;
  line-height: 1.4em;
  text-align: center;
}

header nav {
  font-size: 20px;
  padding: 20px 0 0 0;
  line-height: 1.4em;
  text-align: center;
}


.menu-item {
  width: 90vw;
  margin: 0 auto 60px auto;
}

.menu-item-square {
  position: relative;
}

.menu-item-square .menu-item-image {
  display: block;
}

.menu-item-square p {
  padding-top: 20px;
  line-height: 1.4em;
}

.menu-item-background {
  width: 100%;
  display: block;
}

.menu-item-square#replay .menu-item-image {
  border: 1px solid #2b2727;
}


.menu-item-button {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  display: block;
  text-align: center;
  font-size: 40px;
  font-family: futura-pt-condensed,sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 0;
  background: white;
  color: #ed3511;
  transition: transform 0.2s cubic-bezier(.18,1.22,.66,1.4);
}

.menu-item-square#replay .menu-item-button {
  color: white;
  background: #2b2727;
}

.menu-item-button:hover {
  transform: scale(1.025);
}

.contact-form h2 {
  font-size: 20px;
  font-weight: bold;
}

.contact-form {
  color: #2b2727;
  width: 90vw;
  margin: 0 auto 5vw auto;
  font-size: 12px;
}

.contact-form form {
  margin-top: 20px;
  text-transform: uppercase;
}


.contact-form textarea,
.contact-form input {
  width: 100%;
  margin-top: 5px;
  font-size: 16px;
}

.contact-form button {
  font-size: 16px;
}


.contact-form .flex-column {
  display: grid;
  margin-bottom: 20px;
}

.contact-form-submit {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  padding-left: 20px;
}



.link {
  font-weight: bold;
  color: #ed3511;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}


header .link {
  padding: 0 .5em;
}

.menu-item-square .link {
  padding-right: .25em;
}




@media screen and (min-width: 700px) {

  body {
    display: grid;
    align-items: center;
    height: 100vh;
  }
  
  .page-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
/*    grid-template-rows: repeat(3, minmax(0, 1fr));*/
    grid-row-gap: 30px;
    grid-column-gap: 30px;
    padding: 30px;
    justify-content: center;
    align-items: center;
  }
  
  header {
    grid-column: 1;
    grid-row: 1 / 4;
    padding: 0;
    margin: 0;
    width: 100%;
    align-self: start;
  }
  
  header h1 {

  }
  
  .flukedude-logo-desktop {
    display: block;
  }
  .flukedude-logo-mobile {
    display: none;
  }
  
  header nav {
    font-size: 16px;
    padding: 20px 0 0 0;
    text-align: left;
  }
  
  header .link {
    padding-left: 0;
  }
  
  .link-to-contact {
    display: none;
  }
  
  header p {
    font-size: 16px;
    padding: 20px 0 0 0;
    text-align: left;
  }
  
      
  .menu-item-square {
    width: 100%;
    border-width: 5px;
    margin: 0;
    box-sizing: border-box;
    align-self: start;
    
    grid-column: span 2;
    grid-row: span 2;
    
  }
  
  .menu-item-square#replay {

  }
  
  .menu-item-button {
    font-size: 3vw;
  }
  
  .contact-form {
    grid-column: span 2;
    width: auto;
    margin: 0;
    height: 100%;
  }
  

  .contact-form-extra {
    opacity: 0.25;
    transition: opacity 200ms;
  }

  .contact-form:focus-within .contact-form-extra {
    opacity: 1;
  }
    
}


@media screen and (min-width: 800px) and (max-width: 900px) {

}

@media screen and (min-width: 1000px) {

}
