@charset "utf-8";

/* Small Navigation */
div.smallnav {
    text-align: center;
    padding: 10px;
}

nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    margin: 10px;
    list-style: none;
}

nav li {
    padding: 2px;
}

nav a {
    text-decoration: none;
    font-weight: bold;
    color: black;
    padding: 4px;
}

nav a:hover {
    color: blue;
}

h1 {
    font-size: 25px;
    text-transform: uppercase;
    background: linear-gradient(to right, rgb(255, 255, 17), orange);
    border: 6px darkcyan groove;
    border-radius: 15px;
}

h2 {
    background-color: antiquewhite;
    border: 5px darkcyan groove;
    border-radius: 5px;
}

html {
    background: linear-gradient(-45deg,
            rgb(255, 136, 0),
            rgb(72, 255, 0),
            rgb(0, 47, 255),
            rgb(234, 0, 255),
            yellow);
    background-size: 500% 500%;
    animation: 10s infinite linear animate;
}

body {
    margin-left: auto;
    margin-right: auto;
    font-family: "Times New Roman", Times, serif;
    background: linear-gradient(45deg, red, orange, aqua, purple, lightgreen);
    background-size: 500% 500%;
    animation: 6s infinite ease-in animate;
}

div.f1 {
    display: block;
    width: 100%;
    position: relative;
}

div.f1 ::after {
    display: block;
    width: 100%;
    position: absolute;
}

p {
    padding: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: black;
    background-color: whitesmoke;
    border-radius: 10px;
}

p:hover {
    transform: scale(1.1, 1.1);
}

blockquote {
    background-color: yellow;
    border-color: wheat;
    border-style: groove;
    border-width: 2px;
}

.customer-review {
    display: flex;
    text-align: center;
    margin: 10px;
    padding: 10px;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
}

#title {
    font-size: 50px;
}

.wrapper h1 {
    font-size: 50px;
    margin-bottom: 60px;
    text-align: center;
}

.review-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    padding: 0px;
}

.review-list>.review {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin: 20px;
    padding: 15px;
    border: 2px solid black;
    text-align: center;
    border-radius: 20px;
    border: wheat 8px groove;
    width: 400px;
    height: 400px;
}

.review-list>.review>.review-picture>img#support1 {
    border-style: solid;
    border-width: 2px;
    border-radius: 300px;
    block-size: 130px;
    border-color: rgb(0, 0, 0);
}

.review-picture:hover {
    transform: scale(1.3);
}

.review-list>.review>h3 {
    color: black;
    font-size: 15px;
    margin-top: 50px;
}

.review-list>.review p.one {
    color: black;
    font-size: 12px;
    margin: 12px 0px;
    padding: 5px;
}

i {
    margin-bottom: 10px;
    color: yellow;
}

div.customer-review>h2 {
    font-style: italic;
}

.review:first-of-type {
    background: linear-gradient(-45deg,
            rgb(105, 231, 183),
            purple,
            yellowgreen,
            green);
    background-size: 300% 300%;
    animation: 10s infinite linear animate;
}

.review:nth-of-type(2) {
    background: linear-gradient(45deg,
            rgb(235, 123, 19),
            rgb(0, 255, 106),
            rgb(0, 38, 255),
            rgb(128, 0, 0));
    background-size: 300% 300%;
    animation: 10s infinite linear animate;
}

.review:nth-of-type(3) {
    background: linear-gradient(45deg,
            rgb(105, 231, 183),
            red,
            yellowgreen,
            green);
    background-size: 300% 300%;
    animation: 10s infinite linear animate;
}

.review:last-of-type {
    background: linear-gradient(-45deg,
            rgb(11, 233, 148),
            rgb(0, 110, 255),
            rgb(255, 0, 64),
            rgb(115, 255, 0));
    background-size: 300% 300%;
    animation: 10s infinite linear animate;
}

textarea#comments {
    width: 100%;
    resize: none;
}

div.commentForm {
    margin: 10px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg,
            rgb(0, 255, 255),
            rgb(173, 65, 173),
            rgb(243, 130, 130),
            rgb(255, 153, 0),
            yellowgreen);
    background-size: 500% 500%;
    animation: animate 6s ease-in infinite;
    border: whitesmoke 10px groove;
    border-radius: 20px;
}

form.form {
    text-align: left;
    padding: 10px;
}