:root {
  --my-orange: #B26146;
  --my-blue: #188CA5;
}

html {
  font-size: 14px;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
}

header {
  background-image: url('images/boat_crop.jpg');
  background-position: center;
  background-size: cover;
}

section {
  width: 100%;
  padding: 2rem 0;
}

.custom-font {
  font-size: 1.8rem;
  font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.orange-text {
  color: var(--my-orange);
}

.blue-text {
  color: var(--my-blue);
}

.photo-border {
  border-style: solid;
  border-color: white;
  border-width: 1rem;
  box-shadow: .3rem .3rem .3rem .3rem #B1B1B1;
  margin: 1rem;
}

#logo-div {
  display: flex;
  justify-content: space-between;
  flex-direction: column; 
  margin-top: 1rem;
  margin-left: 1rem;
}

#overlay {
  background-color: rgba(255,255,255,.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

#logo {
  width: 15vw; 
  height: auto; 
  object-fit: contain;
}

#hero-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  flex-grow: 2;
  margin-top: 1rem;
  margin-right: 1rem;
}

#hero-text-top {
  text-align: right;
}

.button {
  color: white;
  background-color: var(--my-blue);
  border-radius: 1rem;
  padding: .3rem .7rem;
  margin-left: 1rem;
  box-shadow: .2rem .2rem .2rem gray; 
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  cursor: pointer;
  box-shadow: none;
  transform: translate(.2rem, .2rem);
}

#hero-text-bottom {
  text-align: right;
  vertical-align: text-bottom;
  margin-bottom: .5rem;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

.social-icon {
  width: 4rem;
  height: 4rem;
  margin: 0px;
  padding: 0px;
}

#list-box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background-color: #F1F1F1;
}

ul.no-bullets {
  list-style-type: none;
  padding: 0;
  margin: 5px;
}

.header-box {
  background-color: white;
  text-align: center;
  flex-grow: 1;
  width: 20rem;
  padding: 1rem;
  margin: 1rem 3rem;
  box-shadow: .2rem .2rem .3rem .3rem gray;
}

#main-body {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

#body-text {
  width: 40vw;
}

.body-image {
  width: 20vw;
  height: auto;
  margin: 3rem;
  transform: rotate(3deg);
}

#example-section {
  background-color: #F1F1F1;
  display: flex;
  flex-direction: column;
}

.example-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0px;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
}

#last-example-row {
  margin-top: -7rem;
  align-items: flex-end;
}

.example-photo {
  width: 15rem;
  height: auto;
}
.sticker-text {
  font-size: 3rem;
  text-align: center;
  text-shadow: 

     -.3rem -.3rem 0 white,  /*** add 3px sticker-style outer stroke ***/
    0   -.3rem 0 white,
    .3rem -.3rem 0 white,
    .3rem  0   0 white,
    .3rem  .3rem 0 white,
    0    .3rem 0 white,
    -.3rem  .3rem 0 white,
    -.3rem  0   0 white,  
    .2rem .2rem .5rem black;   /* add drop shadow */
  }

#merch-section {
  background-color: white;
}

#merch-list li {
  margin: 3rem;
  display: inline;
}

#merch-gallery {
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#merch-gallery li {
  margin: .5rem;
  height: 40vh;
  flex-grow: 1;
}

#merch-gallery img {
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

#form-block {
  background-color: beige;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact-form {
  padding: 2rem;
  box-shadow: .2rem .2rem .3rem .2rem silver;
  background-color: antiquewhite;
}

form {
  width: 40vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

input, textarea {
  width: 100%;
  margin: .7rem;
  font-size: 1rem;
  opacity: 1;
  color: var(--my-blue);
  border-color: #B1B1B1;
  border-width: 3px;
  border-style: inset;
}

*::placeholder {
  color: var(--my-blue);
  font-size: 1.2rem;
}

#message-field {
  height: 20rem;
}

#submit-button {
  width: 80%;
  font-size: 1.3rem;
  margin-top: .7rem;
  background-color: white;
}



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

  html {
    font-size: 10px;
  }

  #main-body {
    flex-direction: column;
  }

  #body-text {
    width: 80vw;
  }

  .body-image {
    display: none;
  }

  #merch-gallery img {
    min-height: 100%;
    max-width: 100vw; 
  }

  form {
    width: 90%;
  }

}
