body {
    padding: 8px;
}

@import url('https://fonts.googleapis.com/css2?family=ABeeZee&display=swap');

img {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

.imageAndLink {
    text-align: center;
    margin: 7%;
    font-family: 'ABeeZee';
}

.imageLink {
    vertical-align: middle;
    display: inline-block;
    padding: 15px 11px 15px 11px;
    background-color: #216bf5;
    color: white;
    border-radius: 12px;
    border: 2px solid black;
    text-decoration: none;
    text-align: center;
    margin-left: 50px;
    font-family: 'ABeeZee';
}

.imageLink:hover {
    color: #216bf5;
    background-color: white;
    border: 2px solid #216bf5;
}

.largeText {
    font-size: 50px;
    text-align: center;
    color: #6495ED;
    margin: 40px;
    font-family: 'ABeeZee';
}

.about {
    color: white;
    text-align: center;
    font-size: 23px;
    width: 100%;
    margin: 8px -8px 8px -8px;
    padding: 12px 5px 12px 5px;
    background-color: #216bf5;
    font-family: 'ABeeZee';
}

label {
    color: #6495ED;
    font-family: 'ABeeZee';
}

input {
    margin: 8px;
    border: 2px solid #216bf5;
    border-radius: 8px;
    padding: 8px 6px 8px 6px;
}

textarea {
    width: 50%;
    height: 200px;
    padding: 8px;
    resize: none;
    margin: 8px;
    border-radius: 8px;
    border: 2px solid #216bf5;
}

select {
    padding: 8px 6px 8px 6px;
    margin: 8px;
    border-radius: 8px;
    border: 2px solid #216bf5;
    background-color: #f1f1f1;
}

button {
    border: 2px solid black;
    border-radius: 10px;
    background-color: #216bf5;
    color: white;
    font-family: 'ABeeZee';
    padding: 12px 8px 12px 8px;
}

button:hover {
    background-color: white;
    color: #216bf5;
    border: 2px solid #216bf5;
}

.alert {
    background-color: rgb(252, 55, 55);
    padding: 18px;
    color: white;
    font-family: 'ABeeZee';
    display: none;
    margin-bottom: 15px;
}

.alertClose {
    color: white;
    font-size: 25px;
    font-family: 'ABeeZee';
    font-weight: bold;
    float: right;
    cursor: pointer;
    transition: 0.3s;
}

.alertClose:hover {
    color: black;
}

@media screen and (max-width: 787px) {
    .imageLink {
        display: block;
        margin-top: 25px;
        text-align: center;
        margin-left: auto;
    }
    img {
        height: 164px;
        width: 250px;
    }
}