@keyframes shake {
    0% {
        transform: translateY(-70%) rotate(-15deg);
    }

    100% {
        transform: translateY(-40%) rotate(-15deg);
    }
}

.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}
.text-center {
    text-align: center;
}

.justify-content-start {
    justify-content: start
}

.justify-content-end {
    justify-content: end;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: start;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.small {
    font-size: 0.7rem;
    display: block;
}

.logo {
    width: 20px;
    height: auto;
    margin-right: 7px;
}

body {
    background-color: #f2f2f2;
    font-family: Roboto, sans-serif;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    display: inline-block;
    color: initial;
}

.main {
    width: 100%;
}

.container {
   max-width: 1200px;
    margin-left: 25px;
    margin-right: 25px;
}

.donation {
    margin: 50px 0;
}

.donation img {
    width: 76px;
    height: auto;
    position: absolute;
    top: 50%;
    left: -35px;
    transform: translateY(-50%) rotate(-15deg);
}

.donation a:hover img {
    animation: shake 0.17s infinite;
    animation-direction: alternate;
}

.section {
    background-color: #ffffff;
    border-radius: 9px;
    box-shadow: 1px 1px 8px #dedede;
    padding: 0 13px;
}

.form-group {
    padding: 18px 0;
    border-bottom: 1px solid #f2f2f2;
}

.field-text {
    margin-left: 10px;
}

.field-text .small {
    color: #666;
}

.error {
    color: red;
    padding: 18px 0;
    display: none;
}

.error:before {
    content: ">";
    font-family: monospace;
    margin-right: 5px;
}

button, input::file-selector-button, .button {
    color: #ffffff;
    font-weight: bold;
    background-color: #114ccc;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    cursor: pointer;
    text-transform: uppercase;
}