.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.title {
    width: 100%;
    text-align: center;
}

.sitios {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sitios a {
    text-decoration: none;
    color: black;
    padding: 20px;
    background-color: #87d0f7;
    width: 40%;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

.sitios a:hover {
    background-color: #326eaa;
    transform: scale(1.05);
    transition: 0.7s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: white;
}

.subtitle-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.subtitle {
    font-weight: bold;
}

.subtitle-container hr {
    width: 100%;
    height: 1px;
    background-color: black;
}