main {
    max-width: 1200px;
    margin: auto;
    box-shadow: 10px 10px 10px 10px gray;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}

main p {
    text-indent: 50px;
    margin-bottom: 10px;
    font-size: 1.25em;
    border-left: 3px solid black;
    padding-left: 10px;
    border-radius: 5px;
}

a {
    color: red;
    cursor: pointer;
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px 10px;
}

#images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.img-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.img-container p {
    width: 100%;
}

.img-content {
    display: none;
    text-align: center;
}

.img-content img {
    width: 100%;
    box-shadow: 5px 5px 5px 5px gray;
}

dl {
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: gainsboro;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid red;
}

dt {
    font-weight: bold;
    color: red;
    font-size: 1.3rem;
    margin-top: 1.2rem;
    position: relative;
    padding-left: 1.8rem;
}


dt::before {
    content: "•";
    position: absolute;
    left: 0;
    color: red;
    font-size: 1.6rem;
    line-height: 1;
}

dd {
    margin-left: 1.8rem;
    color: #333;
    line-height: 1.6;
    background: gainsboro;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

dd:hover {
    transform: translateY(-3px);
    box-shadow: -2px 2px 2px 1px whitesmoke;
}

@media (min-width: 680px) {
    img {
        max-width: 50%;
    }

    #images {
        display: none;
    }

    .img-content {
        display: block;
        width: 100%;
    }

}