/*
Claire Muller
Project 3
*/

:root {
    --sage-green: #abcf71;
    --light-green: #eeffdc;
}

body {
    background-color: var(--light-green);
    font-family: "Inter", Arial, sans-serif;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Gayathri";
    src: url(fonts/Gayathri.woff2);
}

@font-face {
    font-family: "Gayathri400";
    src: url(fonts/Gayathri400.woff2);
}

@font-face {
    font-family: "Inter";
    src: url(fonts/Inter.woff2);
}

h1 {
    font-family: "Gayathri", Arial, sans-serif;
    padding-top: 10px;
}

nav {
    text-align: center;
    font-size: 20px;
    padding-top: 38px;
    font-family: "Gayathri400", Arial, sans-serif;
}

nav a {
    text-decoration: none;
}

nav a:link {
    color: black;
}

nav a:visited {
    color: black;
}

footer a {
    text-decoration: none;
}

footer a:link {
    color: black;
}

footer a:visited {
    color: black;
}

footer {
    text-align: center;
    font-size: 12px;
    font-family: "Inter", Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-around;
    background-color: var(--sage-green);
    width: 100%;
}

main {
    margin-left: 100px;
    margin-right: 100px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 18px;
}

hr {
    border: .5px solid #4a4a4a;
}

.image-txt-container {
    display: flex;
    align-items:center;
    flex-direction: row;
    padding-bottom: 2%;
}

.text {
    padding-left: 20px;
}

h2 {
    font-family: "Gayathri400", Arial, sans-serif;
}

label {
    padding: 2px;
    line-height: 2.5em;
}

form {
    text-align: center;
}

input[type=number] {
    width: 70px;
  }

#banner {
    width: 100%;
    background-image: url(images/rainbow.jpg);
    height: 300px;
    background-color: beige;
    background-position: center center;
    background-size: cover;
}

textarea {
    vertical-align: top;
}

#submit {
    display: block;
    margin: 0 auto;
}

span.plusminus img {
    display: inline-block;
    width: 30px;
    margin: -5px 30px -5px 10px;
}

dl#faq {
    display: block;
    width: 85%;
    margin: 0 auto;
    padding-bottom: 10px;
    font-family: "Inter", Arial, sans-serif;
}
 
dl#faq dt {
    background: url("images/minus.png") left center/20px no-repeat ;   
    font-size: 20px;
    display: block;
    margin: 10px 0 10px;
    text-indent: 60px;
    cursor: pointer;
    user-select: none;
}
 
dl#faq dt.hiddenAnswer {
    background: url("images/plus.png") left center/20px no-repeat ;
}
 
 
dt + dd {
    display: none;
}
 
dl#faq dd p {
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 15px 65px;
    font-family: "Inter", Arial, sans-serif;
    text-align: justify;
}

dt {
    white-space: nowrap;
}

.logo img {
    width: 60px;
    height: 60px;
    float: left;
    padding-top: 18px;
    padding-right: 10px;
}

.logo {
    width: 50%;
}