body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('fondo.png') no-repeat center center;
    background-size: cover; 
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 3vh;
}

.flex-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1700px;
}

.container {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    width: 60%;
    max-width: 800px;
    min-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}

#CC {
    margin-top: auto;
    text-align: center;
    font-size: 1rem;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.763);
}

#CC a {
    color: rgba(230, 221, 221, 0.826);
}

a {
  color: rgb(135, 238, 224);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: center;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 1024px) {
    body {
        background-attachment: scroll;
    }
    
    .flex-container {
        flex-direction: column;
        align-items: center;
    }

    .container {
        width: 90%;
    }
}