body {
    font-family: Arial, sans-serif;
    background-color: #D3BDA9;
    color: #202024;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    padding: 20px;
}

h1 {
    color: #6A8A73;
}

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

.site {
    background-color: #F8F1E9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.site img {
    width: 300px;
    height: 200px;
    background-color: #ffffff;
    #background: url('images/stone-texture.jpg') no-repeat center center fixed;
    display: block;
    margin-bottom: 10px;
    #margin: 0 auto 20px;
    #filter: invert(100%);
}

.site a {
    display: block;
    padding: 10px;
    background-color: #6A8A73;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.site a:hover {
    background-color: #14517B;
}

