:root {
  --colourBackground: #cfcfcf;
  --colourBackgroundDarker: #3f6047;
  --colourAccent: #d60bbb;
  --colourHighlight: #7480b7;
  --colourForeground: #f1f1f1;
  --colourTextLight: #c0d2eb;
  --colourTextDark: #262626;
  

 

}

    

    html
    {
      font-size: 20px;
      font-family: Didot, Bodoni, Candara, Baskerville, Palatino, Georgia;
    }
    body 
    {
      min-height: 100vh; 
      padding: 0;
      margin: 0;
      background-image: url('tomandjoy.jpeg');
      background-size:cover;
      background-position: center bottom;
      font-family: inherit;

      display:flex; 
      flex-direction:column; 
      justify-content: space-between ;
      
    }

    
     .content 
     {
      display: flex;
      height: 80%;
      justify-content: center;

     }

    .header {
      background-color: var(--colourBackgroundDarker);
      overflow: hidden;
      opacity: 80%;
      font-size: 30px
    }

    .footer
    {
      background-color: var(--colourBackgroundDarker);
      color:var(--colourTextLight);
      display: flex;
      justify-content: center;
      padding: 1em;
      opacity: 80%;

    }

    .navigation {
      display: flex;
      justify-content: center;



    }

    
    .navigation a {
      float: left;
      font-size: 30px;
      color: white;
      text-align: center;
      padding: 2em 0.5em;
      text-decoration: none;
    }
    
    .dropdown {
      float: left;
      overflow: hidden;
    }
    
    .dropdown .dropdown-button {
      font-size: 30px;  
      border: none;
      outline: none;
      color: white;
      padding: 2em 0.5em;
      background-color: inherit;
      font-family: inherit;
      margin: 0;
    }
    
    .navigation a:hover, .dropdown:hover .dropdown-button {
      background-color: var(--colourHighlight)
    }
    
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: var(--colourBackground);
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
    }
    
    .dropdown-content a {
      float: none;
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      text-align: left;
    }
    
    .dropdown-content a:hover {
      background-color: #ddd;
    }
    
    .dropdown:hover .dropdown-content {
      display: block;
    }
    


    img {
      width: 50%;

    }

    .center 
    {
      padding: 4em;
      margin: 3em;
      display: flex;
      align-items: center;
      flex-direction: row;
      justify-content: center ;

    }

    .centered-section
    {
      display: none;
      
      
    }


    .content-container
    {
      padding: 2vw;
      margin: 2vw;
      width: 600px;
      background-image: url("paper.jpeg");
      background-size:cover;
      opacity: 80%;
      display: flex;
      align-items: center;
      flex-direction: column;
      border-radius: 2em;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);

    }

    .line
    {
      transform: translate(0,-25%);
    }

    .bounding-box,.bounding-box-main
    {
      margin: 0.5em;
      border: solid;
      font-family: inherit;
      font-weight: 800;
      font-size: 1.5em;
      text-decoration: none;
      color: var(--colourTextDark);
    }

    .bounding-box-main
    {
      padding: 0.5em;
    }

    .bounding-box:hover,.bounding-box-main:hover
    {
      background-color: var(--colourHighlight);
      opacity: 90%;
      cursor:pointer;
      color: var(--colourBackgroundDarker);
    }

    button, input[type="submit"], input[type="reset"] {
      background: none;
      color: inherit;
      border: none;
      padding: 0.5em;
      font: inherit;
      cursor: pointer;
      outline: inherit;
    }

  input
  {
    border: none;
    padding: 0.5em;
    opacity: 80%;
    margin: 0.5em;  
    display: flex;
align-items: center;

  }

  input[type=text] {
    width: 40%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 0.75em;
    font-size: 1em;
    background-color: var(--colourForeground);
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding: 0.75em 0.5em;
    transition: width 0.4s ease-in-out;
  }
  
  input[type=text]:focus {
    width: 80%;
  }

  input::selection
  {
    border: #10c469;
  }


  select 
  {
    width: 75%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 0.75em;
    font-size: 1em;
    background-color: var(--colourForeground);
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding: 0.75em 0.5em;
    margin:  0.5em;
    
  }

  .complete-form
  {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.title
{
  font-size: 3em;
  font-family: inherit;
  font-weight: 900;
  font-stretch: expanded;
}

.subheading
{
  padding: 0.25em;
  font-size: 1.5em;
}

.paragraph
{
  font-size: 1.5em;
  width: 80%;
}






