body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #333;
}


/* Header/Blog Title */
.header {
    padding: 30px;
    text-align: center;
    background: white;
    height: 300px;
    background-image: url(img/Tishey.JPG);
    background-size: cover;
    color: azure;
    transform: translate(0%, 10%);
    z-index: 0;
}
    
.header h1 {
    font-size: 50px;
}

nav {
    display: flex;
    justify-content: space-between;
    background-color: #772146;
    padding: 10px;
    text-align: center;
    transform: translate(0%, 10%);
}


nav a {
    color: white;
    padding: 10px;
    margin: 5px;
    display: inline-block;
}

/* Style for the normal link */
a {
    color: #772146; 
    text-decoration: none;
}
  
/* Style for the highlighted link */
a:hover {
    color: white; /* Change the color on hover */
    background-color: #333; /* Add a background color on hover */
    border-radius: 5px; /* Optional: Add rounded corners */
}

.menu-icon {
    display: none;
    cursor: pointer;
    color: #ffbdbd;
    font-size: 24px;
}

#fcf-form {
    display:block;
}
  
.fcf-body {
    margin: 0;
    font-family: -apple-system, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.247);
    padding: 30px;
    color: azure;
    padding-bottom: 10px;
    border-radius: 0.25rem;
    max-width: 100%;
}
  
.fcf-form-group {
    margin-bottom: 1rem;
    color: snow;
}
  
.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
  
.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
  
.fcf-form-control:focus {
    border: 1px solid #313131;
}
  
select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}
  
textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
}
  
label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}
  
.fcf-credit {
    padding-top: 10px;
    font-size: 0.9rem;
    color: #545b62;
}
  
.fcf-credit a {
    color: #545b62;
    text-decoration: underline;
}
  
.fcf-credit a:hover {
    text-decoration: underline;
}
  
.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    color: snow;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Footer */
.footer {
    padding: 30px;
    text-align: center;
    background: #772146;
    color: azure;
    margin-top: 20px;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
  }
  
  .fcf-btn:hover {
    color: #212529;
    text-decoration: none;
  }
  
  .fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
  }
    
/*Navigation for Mobile Device*/
@media only screen and (max-width: 600px) {
    .nav-links {
        display: none;
        flex-direction: column;
        text-align: center;
        width: 100%;
        position: absolute;
        background-color: #333;
        z-index: 1;
    }

    .nav-links a {
        display: block;
        padding: 15px;
    }

    .menu-icon {
        display: block;
    }
}