body {
  background-color: #a24646;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: white;
  margin: 0;
  min-height: 100vh;
}
a:link, a:visited {
  color: white;
  text-decoration: none;
  opacity: 1;
  transition: color 0.4s;
}
a:hover{
  color: #decdcd;
}
body.home{
  display: flex;
}
h1, h2, h3, h4, h5, h6, .menu ul {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
h1{
  font-size: 44px;
  margin-bottom: 40px;
  margin-top: 20px;
}
p, form, input, textarea, button{
  font-size: 18px;
  line-height: 1.4em;
  letter-spacing: .02em;
  font-family: inherit;
}
.socialmedia a img{
  display: inherit;
  width: 25px;
  height: auto;
  padding-left: 5px;
  vertical-align: middle;
  object-fit: contain;
}
.menu ul {
  list-style-type: none;
  display: inherit;
}
nav.menu:not(.home){
  position: fixed;
  line-height: 2em;
  padding-top: 20px;
}
.navbtn, li.close {
  display: none;
}
nav.menu.home{
  align-self: end;
}
nav.menu.home ul{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 20px;
}
hr{
  color: white;
  opacity: 0.6;
  margin-top: 2em;
}
iframe{
  width: 100%;
  aspect-ratio: 16/9;
  border-width: 0;
}
iframe.smaller{
  display: inline-block;
  width: 49%;
}
.content{
  text-align: center;
  padding: 50px 20vw 20px 20vw;
  margin: 0;
}
.btn{
  cursor: pointer;
  color: white;
  background-color: transparent;
  margin: 30px auto;
  width: max-content;
  padding: 14px 35px 14px 35px;
  text-transform: uppercase;
  border-style: solid;
  border-color: white;
  border-width: 3px;
  transition: color 0.4s, background-color 0.4s;
}
.btn:hover, .btn a:hover{
  background-color: white;
  color: black;
}
.conductor{
  position: relative;
  aspect-ratio: 16/9;
}
.carousel{
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  display: flex;
  aspect-ratio: 16/9;
}
.carousel img{
  scroll-snap-align: center;
  height: inherit;
  object-fit: contain;
  z-index: -1;
}
.conductor .btn {
  position: absolute;
  height: max-content;
  padding: 10px;
  top: 40%;
}
.btn.prev{
  left: 0;
}
.btn.next{
  right: 0;
}
.credits p{
  font-size: 14px;
  line-height: 1.1em;
}
div.credits p{
  text-align: left;
  margin: 0;
}
.homepage{
  width: 50vw;
  height: 100vh;
  margin: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.homepage img{
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  margin: 0;
  display: block;
}
.homepage.content{
  padding: 20px 60px 40px 80px;
  box-sizing: border-box;
}
img.floaty{
  float: left;
  width: 50%;
  margin: 0 15px 20px 0;
}
.dls{
  width: 100%;
}
footer.home{
  display: inherit;
  flex-direction: row;
  justify-content: space-between;
}
form {
  width: 80%;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.2em;
}
input, textarea {
  border-radius: 0;
  border: solid 2px;
  border-color: #993333;
  margin: 5px 0 5px 0;
  padding: 5px;
  width: 100%;
  resize: none;
}
.field{
  width: 100%;
  text-align: left;
  font-weight: bold;
}
/*------MEDIA QUERIES--------*/
@media screen and (max-width: 1050px){
  p, form, input, textarea, button{
    line-height: 1.1em;
    letter-spacing: .02em;
  }
  body.home {
    flex-direction: column;
  }
  .content{
    padding: 50px 10vw 10px 10vw;
  }
  .homepage {
    width: 100vw;
    height: revert;
  }
  .homepage img {
    height: 35vh;
    object-position: left 42%;
  }
  .homepage.content{
    min-height: 65vh;
  }
  h1{
    margin: 10px 0 10px 0;
    text-align: center;
  }
  nav.menu ul:not(nav.menu.home ul){
    display: none;
    position: fixed;
    margin: 0;
    padding: 0;
    top: 0;
    z-index: 3;
    width: 100vw;
    background-color: #993333;
    text-align: center;
    font-size: 2.5vh;
    line-height: 5vh;
    min-height: 30vh;
  }
  .navbtn{
    display: block;
    width: 7vw;
    height: 7vw;
    position: relative;
    left: 2.5vw;
    top: 0.5rem;
    z-index: 1;
  }
  li.close{
    display: inline;
  }
  p.hsjump{
    display: none;
  }
  nav.menu.home{
    width: revert;
  }
}
@media screen and (orientation: portrait){
  h1{
    margin: 0;
    font-size: 4rem;
    letter-spacing: 0.1em;
  }
  h2, p, form, input, textarea, button, .btn {
    font-size: 2rem;
  }
  .btn{
    border-width: 4px;
    margin: 30px auto;
    padding: 1rem;
  }
  nav.menu.home{
    font-size: 1.9rem;
    text-align: initial;
  }
  nav.menu.home ul{
    margin: 0;
    letter-spacing: 0.08em;
    justify-content: space-between;
    gap: 15px;
  }
  .socialmedia a img{
    width: 10vw;
    padding-left: 2vw;
  }
  .content{
    padding: 20px 3vw 10px 3vw;
  }
  .content p{
    text-align: left;
  }
  img.floaty{
    display: none;
  }
  .credits p{
    font-size: 1.5em;
    line-height: 1.1em;
  }
  iframe, iframe.smaller{
    width: 100%;
  }
  .homepage.content{
    padding: 40px;
  }
}
