body {
    padding: 0px;
    margin: 0px;
    overflow: auto;
    background-color: rgb(83, 83, 83);
}

.header{
    background-image: url(bcg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 25%;
    padding-top: 10%;
    padding-bottom: 20%;
    margin-bottom: 3%;
    border-bottom: 30px solid black;
    border-top: 30px solid black;
}

.header a{
    text-decoration: none;
}

.header h1 {
    font-size: 200px;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-style: italic;
    text-shadow: 13px 8px 3px #000000, -2px -2px 0px #000000;
    color: rgb(46, 201, 212);
    transition: 250ms;
}

.header a h1:hover{
    transform: scale(1.2);
    transition: 300ms;
}

.content {
    text-align: center;
    animation: fadeIn 1s forwards;
    animation-timing-function: ease-out;
    padding-bottom: 2%;
    padding-top: 1%;
}

.content a {
    text-decoration: none;
}

.content ul {
    list-style-type: none;
    padding: 0;
}

.content ul li {
    display: inline-block;
    width: 22%;
    margin: 1%;
    vertical-align: top;
    transition: 300ms;
    margin-bottom: 2%;
}

.content ul li:hover {
    transform: scale(1.2);
    transition: 500ms;
}

.image-container {
    text-align: center;
}

.image-container img {
    width: 95%;
    padding: 10px;
    background-color: black;
    transition: 100ms;
    box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.5);

}

.image-container img:hover {
    background-color: rgb(39, 176, 185);
    transition: 300ms;
}

.image-container span {
    display: block;
    margin-top: 8px;
    padding: 5px;
    font-family: "Roboto Condensed", sans-serif;
    color: white;
    background-color: black;
    border: 2px solid #000;
    border-radius: 2px 2px 10px 10px;
    width: 80%;
    margin: 0 auto;
    font-size: 30px;
    transition: background-color 300ms;
}

.content ul li:hover .image-container span {
    background-color: rgb(39, 176, 185);
}

.bottom{
    background-color: black;
    width: 100%;
    padding: 15px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.back{
    text-align: center;
    font-size: 65px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 2%;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-style: italic;
    text-shadow: 7px 5px 2px #000000, -2px -2px 0px #000000;
    transition: 500ms;

}

.back a{
    text-decoration: none;
    color: white;
}

.back:hover{
    transform: scale(1.2);
    transition: 300ms;
}

.back a:hover{
        transition: 300ms;
    color: rgb(46, 201, 212);
}

