@font-face { font-family: Headings; src: url('./fonts/FjallaOne-Regular.ttf'); }
@font-face { font-family: Headings; font-weight: bold; src: url('./fonts/FjallaOne-Regular.ttf');}
@font-face { font-family: Header; src: url('./fonts/Indigo-Regular.otf'); }
@font-face { font-family: Header; font-weight: bold; src: url('./fonts/Indigo-Regular.otf');}
@font-face { font-family: Body; src: url('./fonts/SourceSans3-VariableFont_wght.ttf'); }
@font-face { font-family: Body; font-weight: normal; src: url('./fonts/SourceSans3-VariableFont_wght.ttf');}

/* video background */
#background-video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }

h1{
    font-family: Header; 
    color: #ff168a;
    font-size: 6rem;
    margin-top: 30vh; 
    letter-spacing: 0.1em;
    -webkit-text-stroke-width: 3px; 
    -webkit-text-stroke-color: #FFF;
    /*#f4d434*/
}
h2{
    font-family: Headings;
    /*color: #F83B93;*/
    color: #fff;
    -webkit-text-stroke-width: 1px; 
    -webkit-text-stroke-color: #333;
    font-size: 3rem;
}
h3{
    font-family: Headings;
    color: #F83B93;
    font-size: 2.3rem;
}
h4{
    font-family: Headings;
    color: #411111;
    font-size: 2rem;
}

body{
    font-size: 1.4rem;
    background-color: #411111;
    /*background: url("https://assets.codepen.io/6093409/river.jpg") no-repeat;
    background-size: cover;*/
}
main{
    background-color: #fff;
}
p{
    color: #411111;
    font-family: Body;
    padding-left: 20vw;
    padding-right: 20vw;
}

.hidden-spacer {
    height: 56px
}
footer{
    text-align: right;
    padding-right: 2vw;
    color: #fff;
    background-color: #ff168a;
    font-size: 0.8rem;
    font-family: Body;
}
.pink-button {
    border: none;
    color: #FFF;
    opacity: 0.7;
    background-color: #ff168a;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: Body;
    font-size: 1rem;
    font-style: bold;
    margin: 4px 2px;
    transition-duration: 0.5s;
    cursor: pointer;
  }
.pink-button:hover {
    opacity: 1;
    color: #FFF;
  }
.footer-link{
  font-size: 1.4rem;
  text-decoration-line: none;
  /* color: #f4d434; */
  color: #fff;
  opacity: 0.7;
  font-family: Headings;
  padding-inline: 1vw;
  transition-duration: 0.5s;
  cursor: pointer;
}
.footer-link:hover{
  opacity: 1;
  color: #fff;
  /*color: #f4d434;*/
}
.footer-nolink{
  font-size: 1.4rem;
  text-decoration-line: none;
  color: #f4d434;
  font-family: Headings;
  padding-inline: 1vw;
  cursor: pointer;
  opacity: 1;
}
.footer-nolink:hover{
  color:#f4d434;
}

.footer-container {
  float: left;
  width: 50%;
}
.footer-row{
  margin-inline: 5vw;
}
.footer-row:after {
  content: "";
  display: table;
  clear: both;
}

a{
  border: none;
  color: #ff168a;
  opacity: 0.7;
  font-family: Body;
  font-style: bold;
  transition-duration: 0.5s;
  cursor: pointer;
  text-decoration-color: #ff168a;
}
a:hover{
  opacity: 1;
  color: #ff168a;
}

li::before{
  color: #F83B93;
}
  input[type=text], select, textarea{

    width: 100%; /* Full width */
    padding: 8px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 8px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  input[type=date]{
    width: 50%;
    padding: 8px;
    box-sizing: border-box;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: #F83B93;
    color: white;
    font-family: Body;
    font-size: 1rem;
    font-style: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    transition-duration: 0.5s;
    cursor: pointer;
    opacity: 0.7;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    opacity: 1;
  }
  
  /* Add a background color and some padding around the form */
  .container {

    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
  }
@media (max-width: 850px) {
    body {background-color: #F83B93;}
    h1 {font-size: 3rem; margin-top: 10vh;}
    h2 {font-size: 2.3rem;}
}
