* {
    font-size: 25px;
    font-weight: 500;
    color: #ccc;
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
}

img {
    display: flex;
    width: 100%;
    margin-top: 40px;
}

header {

    font-size: 32px;

    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;

    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

body {
    background-color: black;
}

.logo {
    width: 400px;

}

nav a {
    color: aliceblue;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
}

nav a:hover {
    color: #ccc;
}

#back-to-black {
    background-image: url('imagens/fundo.jpg');
    /* Replace with actual bg if needed */
    background-size: cover;
    padding: 40px 20px;
}

h2 {
    margin-bottom: 20px;
}

.content {
    display: flex;

    align-items: flex-start;
    gap: 30px;

    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.duas_colunas {
    width: 50%;
}

.poster {
    width: 200px;
    border: 2px solid #555;
    box-shadow: 0 0 10px #000;
}

.description h2 {
    font-style: italic;
    margin-bottom: 15px;
}

.trailer-link a {
    color: #ff0000;
    text-decoration: underline;
}

.biografia {
    background-color: #2b2b2b;
    padding: 40px 20px;
}

.biografia h2 {
    font-style: italic;
    font-size: 30px;
    margin-bottom: 20px;
}

.bio-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}


.bio-image {
    width: 200px;
    border-radius: 5px;
    box-shadow: 0 0 10px #000;
}

.amy-blake {
    padding: 40px 20px;
}

.amy-blake h2 {
    font-style: italic;
    font-size: 28px;
    margin-bottom: 20px;
    margin-left: 225px;
}

.blake-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.blake-img {
    width: 250px;
    border-radius: 4px;
    box-shadow: 0 0 10px #000;
}

.blake-text {
    flex: 1;
    max-width: 600px;
}

.blake-text p {
    line-height: 1.6;
}

.amy-stage {
    margin-top: 20px;
}

.blake-subimg {
    margin-top: 20px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 0 10px #000;
}

.tributos {

    background-color: #252525;
    padding: 50px 20px;
    text-align: center;

}

.tributos h2 {
    margin-top: 0px;
    font-style: italic;
    font-size: 28px;
    margin-bottom: 30px;
}



#tributos img {
    width: 25%;
    border-radius: 6px;
    box-shadow: 0 0 10px #111;
    transition: transform 0.3s ease;
}

.tributos-gallery img:hover {
    transform: scale(1.05);
}

footer {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 14px;
    color: #ccc;
    text-align: center;
}

/*** RESPONSIVO ***/
* {
    margin: 0%;
    padding: 0%;


    /* por causa do responsivo*/
    box-sizing: border-box;
}

@media (max-width:600px) {
    .content {
        /*display; block;*/
        flex-direction: column;
        width: 95%;
    }

    .duas_colunas
}