/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- nav
*/
body, html {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
  }
.navbar-bg {
	background-image: url(../images/nav-background.png);
    min-height: 185px;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;

    /* Needed to position the navbar */
    position: relative;
}
.navbar-container {
    position: absolute;
    margin: 20px;
    width: auto;
  }
/* The navbar */
.navbar {
    overflow: hidden;
    float: right;
    
  }
  .navbar-logo{
    float: left;
    width: 20%;
    max-width: 300px;
    height: auto;
    

  }
  .navbar a {
    background-image: url(../images/nav-button.png);
    background-size: 100% 100% ;
    text-align: center;
    text-decoration: none;
    font-size: 4vw;
    height: fit-content;
    display: inline-block;
  }
  .navbar a:hover {
    background-color: #ddd;
    color: black;
  }
  .navbar img  {
    height: 4vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }
/* Cards */
  .card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    text-align: center;
  }

  /* The hero image */
.hero-image {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    background-image: url(../images/hero.png);
  
    /* Set a specific height */
    height: 80%;
  
    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  /* Place text in the middle of the image */
  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
  }

  /*toast snackbar */
  #snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: rgb(240, 22, 167);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
  }
  
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
  /* forms */
  .container {
    border-radius: 5px;
    background-color: #48da5c;
    padding: 80px;
  }
  .button-submitt{
    height: 85px;
    width: 150px;
    background-color: #f338b5;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-image: url(../images/send-button.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }
  
  input[type=submit] {
    background-color: #f338b5;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: #45a049;
  }
  