body {
    font-family: 'Times New Roman', Times, serif;
    background: bisque;
}

header {
    text-align: center;
    background-color: #f0f0f0;
    padding: 10px;
}

nav {
    float: left;
    width: 20%;
    height: 100vh;
    background-color: #ddd;
    padding: 20px;
    font-size: 20px;
}

section {
    margin-left: 25%;
    padding: 20px;
}

footer {
    clear: both;
    text-align: center;
    background-color: #f0f0f0;
    padding: 10px;
}

img {
    max-width: 100%;
    height: 30%;
    width: 30%;
}

.text {
    display: flex;
}

.animation {
    animation: pulse 1s infinite;
}

h1, h2 {
    color: black;
}

p {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 40px;
}

header > img {
    width: 10%;
    left: 0;
    display: flex;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.content-image {
    float: right;
    margin-left: 20px;
    margin-right: 20px;
}

form {
    margin-top: 20px;
}