html,
body {
    font-family: Arial, sans-serif;
    margin: 0;
}

@keyframes scale {
    from {
        transform: scale(1.5);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(300px);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes blur {
    0% {
        filter: blur(150px) opacity(1000%);
    }

    60% {
        filter: blur(0);
    }
}

header {
    animation: blur 1.5s linear forwards;
    background-image: url(bgbgbg.gif);
    background-position: center;
    background-size: cover;
    background-color: #EBE5C9;
    padding-top: 30px;
    padding-bottom: 20px;
    text-align: center;
}

body {
    background-color: #EBE5C9;
}

h1 {
    animation: slideInRight 1.5s linear forwards;
    animation-delay: 0.5s;
    font-family: serif;
    font-style: bold;
    font-size: 55px;
    color: #EBE5C9;
}

header img {
    animation: slideInRight 2s linear forwards;
    padding-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 350px;
    border-radius: 174px;
    transition: 2s;
}

header img:hover {
    width: 600px;
}

h2 {
    animation: slideInRight 2s linear forwards;
    border: #716844;
    border-radius: 100px;
    background-color: #716844;
    width: fit-content;
    color: #EBE5C9;
    padding: 25px;
    transition-duration: 1s;
    font-family: serif;
}

h2:hover {
    background: #2B2510;
}

.content {
    animation: blur 1.5s linear forwards;
    font-family: serif;
    font-style: normal;
    font-size: 19px;
    font-weight: 400;
    line-height: 20px;
    color: #716844;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.box {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    height: 450px;
    width: 880px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.big-image {
    position: absolute;
    z-index: 2;
    transition: .4s;
    transform-origin: 50%, 50%;
    width: 100%;
}

.big-image2 {
    filter: blur(20px);
    transform: scale(1.1);
    opacity: 1;
    transition: .4s;
}

.box:hover .big-image {
    filter: blur(20px);
    transform: scale(1.1);
    opacity: 0;
}

.box:hover .big-image2 {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
}

hr {
    border-top: 0.5px;
}

p.cap3on {
    text-align: center;
    font-size: 16px;
    color: black;
    font-style: italic;
    font-weight: bold;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    color: #434C70;
    text-decoration: none;
}

footer {
    animation: blur 1.5s linear forwards;
    margin-top: 20px;
    padding: 40px 20px;
    background-color: #716844;
}

footer ul {
    text-align: center;
}

footer ul li {
    display: inline-block;
    margin: 0 5px;
}