body{
    background-color: rgb(255, 208, 192);
}

h1 {
    color:black;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: xx-large;
}

p {
    color: rgb(0, 0, 0);
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: large;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

figcaption {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: medium;
}

.links {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 15px;
}

.links a {
    display: inline;
    color: rgb(124, 43, 43);
    font-size: large ;
    text-decoration: none;
}

.links span { 
    margin: 0 10px;
    font-size: large;
}

dl dt {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: x-large;
}

dl dd {
    display: block;
    margin: 10px;
    text-align: center;
    font-size: medium;
    font-family: 'Times New Roman', Times, serif;
}

h3 {
    color: rgb(132, 45, 45);
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: large;
}

.scroll {
    text-align: right;
    font-family: 'Times New Roman', Times, serif;
    font-size: xx-large;
    gap: 10px;
    margin-bottom: 30px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.line {
    height: 2px;
    width: 100%;
    background-color: rgb(35, 32, 32);
    margin: 30px 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.gallery figure {
    text-align: center;
}

.gallery figure img {
    display: block;
    width: 300px;
    height: auto;
    border: 3px solid black;
}

.gallery figure figcaption {
    margin-top: 6px;
    font-size: medium;
    font-family: 'Times New Roman', Times, serif;
}