* {
    margin: 0;
}
body {
    background-color: white;
    overflow-y: auto;
    overflow-x: hidden;
}
.container {
    background-color: #EEEEEE;
    display: flex;
    padding: 20px;
}
.container:nth-child(2) {
    padding-top: 120px;
}
.container:nth-child(even) {
    background-color: white;
}
.container:nth-child(4) {
    display: block;
}
.container > .form_box {
    display: block;
}
.container:nth-child(6) {
    display: block;
}
header {
    background-color: white;
    padding: 0px 0px 0px 0px;
    width: 100%;
    display: flex;
    position: fixed;
    box-shadow: 10px 0px 10px darkgray;
}
header > a {
    align-self: center;
    justify-self: flex-end;
    margin: 0px 0px 0px 970px;
}
header > i {
    align-self: center;
    justify-self: flex-end;
    margin: 0px 0px 40px 1253px;
    padding: 0px 0px 0px 3px;
    position: absolute;
    background-color: white;
    color: red;
    font-size: 36px;
    border-radius: 15px;
} 
.donateButton {
    background-color: white;
    color: red;
    font-size: 30px;
    font-weight: bold;
    border: 5px, solid, red;
}
.donateButton:hover {
    border-style: double;
}
.logo img {
    width: 100px;
    height: 60px;
}
img {
    padding: 20px 40px 20px 40px;
    height: auto;
    width: 20%;
}
img:nth-child(2) {
    width: 40%;
}
.textbox {
    background-color: transparent;
    padding: 20px 40px 20px 40px;
    width: 60%;
    border-width: 0px 2px 0px 0px;
    border-style: solid;
    border-color: darkgray;
}
.textbox:nth-child(2) {
    border-width: 0px 0px 0px 2px;
}
.textbox:nth-child(3) {
    width: 40%;
}
.reason_box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    height: 280px;
    align-content: center;
}
h2 > span {
    color: red;
}
.reason_box > p {
    margin: 30px;
    padding: 10px;
    background-color: red;
    text-align: center;
    color: white;
    border: 1px, solid, red;
    border-radius: 25px;
    width: 30%;
    align-self: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 0 15px darkgrey;
}
.form_box {
    background-color: transparent;
    width: 50%;
    flex-direction: column;
    flex-wrap: wrap;
    display: flex;
}
.form_box_b {
    display: block;
    text-align: start;
    margin: 0px 110px;
}
.form_box:nth-child(2) {
    padding: 15px;
    box-shadow: 0 0 15px darkgray;
    display: flex;
}
.reviews {
    width: 100%;
    display: flex;
    justify-content: center;
}
.reviews:nth-child(2) {
    justify-content: flex-end;
    align-items: flex-end;
}
.review_box {
    margin: 40px 20px;
    text-align: center;
    height: 340px;
    border: solid, darkgray;
    border-width: 0px 2px 0px 0px;
    width: 25%;
    padding: 20px;
}
.review_box > p:first-child {
    font-weight: bold;
    padding: 10px;
}
.form_box .reviewButton {
    background-color: white;
    color: red;
    padding: 10px 20px;
    border: 5px solid red;
    border-radius: 0px;
    font-weight: bold;
    align-self: flex-end;
    justify-self: end;
}
.form_box .reviewButton:hover {
    border-style: double;
}
.reviewButton {
    background-color: white;
    color: red;
    font-size: 20px;
    border: 5px, solid, red;
    cursor: pointer;
    font-weight: bold;
    padding: 5px;
}
.reviewButton:hover {
    background-color: white;
    color: red;
    border-color: red;
    border-style: double;
}
input {
    margin: 30px 60px 30px 0px;
    border-radius: 10px;
    border: 1px, solid;
}
select {
    margin: 30px 60px 0px 0px;
    border-radius: 10px;
}
input:focus {
    border-color: red;
    outline: none;
}
select:focus {
    border-color: red;
    outline: none;
}
label {
    font-family: "Barlow", sans-serif;
}
h1 {
    padding: 0px 80px;
    font-family: "Barlow", sans-serif;
}
h2 {
    text-align: center;
    width: 100%;
    padding: 40px 0px 0px 0px;
    font-size: 40px;
    font-family: "Barlow", sans-serif;
}
h3 {
    text-align: center;
    font-size: 20px;
    font-family: "Barlow", sans-serif;
    padding: 0px 0px 10px 0px;
}
p {
    font-family: "Barlow", sans-serif;
}
i {
    font-size: 30px;
}
p i {
    font-size: 20px;
}
i:hover {
    color: red;
}
.reason_box i:hover {
    color: white;
}
footer {
    display: flex;
    text-align: center;
    flex-direction: column;
    background-color: #EEEEEE;
    justify-content: center;
    padding: 10px;
    gap: 15px;
}
footer a {
    color: black;
}