* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-image: linear-gradient(to right top, #6e6666, #666062, #5d5a5c, #565556, #4f4f4f);
}
h1, h2, h3, p {
    font-family: "Roboto", sans-serif;
}

header {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

#menu {
    width: 256px;
    height: 120px;
    background-image: url(../img/logo-the-beatles-256.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#esq {
    text-align: center;
    width: 100%;
}

#Contato {
    margin-right: 30px;
    text-align: right;
    flex-shrink: 0;
}

#esq a, #Contato a {
    text-transform: uppercase;
    color: black;
    font-weight: bold;
    padding: 7px;
    text-decoration: none;
}

#esq a:hover {
    color: white;
}

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

#um {
    display: flex;
    justify-content: space-between;
}

#colesq {
    width: 40%;
    height: 400px;
    margin-top: 5px;
    margin-left: 10px;
    font-size: 17px;
    text-align: left;
    color: black;
}

#colesq a {
    text-transform: uppercase;
    color: black;
    font-weight: bold;
}

#video {
    width: 45%;
    margin-top: 23px;
    margin-right: 10px;
    float: right;
}

#video iframe {
    width: 100%;
    height: 100%;
}

#colunas {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 65px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#colunaum, #colunadois, #colunatres { 
    width: 30%;
    padding: 20px;
    text-align: center;
    position: relative; 
    border-radius: 8px;
}

.imagem { 
    width: 100%;
    height: 240px; 
    margin: 20px 0;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}

#colunaum .imagem {
    background-image: url('../img/imgum.jpg');
}

#colunadois .imagem { 
    background-image: url('../img/imgdois.jpg');
}

#colunatres .imagem { 
    background-image: url('../img/imgtres.jpg');
}

#colunaum h3, #colunadois h3, #colunatres h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

#colunaum p, #colunadois p, #colunatres p {
    font-size: 1rem;
    color: black;
}

#tabela {
    width: 100%;
    padding: 20px;
}

#tabela h2 {
    text-align: center;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    border: 1px solid #000000;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #333;
    color: rgb(0, 0, 0);
}

footer {
    width: 100%;
    height: 200px;
    padding: 20px;
    text-align: center;
}
#rodape{
    color: black;
    text-decoration: none;
    margin: 0 10px;
}
#links{
    margin: 0 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
#links a{
    color: black;
    text-decoration: none;
}
#links img {
    width: 40px; 
    height: 40px;
    margin-top: 20px;
    object-fit: cover; 
}
footer nav a {
    color: black;
    text-decoration: none;
    margin: 0 10px;
}

footer nav a:hover {
    text-decoration: underline;
}

#email{
    color: black;
    text-decoration: none;
}

#email:hover{
    color:white;
    text-decoration: none;
}

@media (max-width: 768px) {

    header {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    #menu {
        width: 100%;
        height: 170px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    #esq, #Contato {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    #um {
        flex-direction: column;
        align-items: center;
    }

    #colesq, #video {
        width: 90%;
        margin: 10px 0;
        height: auto;
        text-align: center;
    }

    #colunas {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #colunaum, #colunadois, #colunatres {
        width: 80%;
    }

    .imagem {
        height: 120px;
    }

    table {
        font-size: 0.9rem;
    }
    footer {
        width: 100%;
        height: 100%;
        padding: 20px;
        text-align: center;
        font-size: 0.9rem; 
    }
    #links {
        flex-direction: row; 
        align-items: center;
        justify-content: center;
    }

    #links a {
        margin: 10px; 
    }
    #links img {
        width: 35px; 
        height: 35px;
    }
    #email {
        color: black;
        text-decoration: none;
        margin-top: 10px; 
        display: block;
    }

    #email:hover {
        color: white;
        text-decoration: none;
    }
    #rodape {
        color: black;
        font-size: 1rem;
    }
}