@media screen and (min-width: 601px) {
    
}

@media screen and (max-width:600px) {
    header {
        position: fixed;
        width: 100px;
        height: 100vh;
    }

    a {
        font-size: var(--tamanhoLinkMobile);
    }

    .imgMobile {
        display: inline;
        width: 80px;
        position: absolute;
        bottom: 20px;
        left: 10px;
    }
}

@media print { /* Regra para impressoras */
    header {
        display: none;
    }
}

.paisagem, .retrato {
    display: none;
}

@media screen and (orientation: landscape) { /* Regra para janelas paisagem */
    .paisagem {
        display: block;
    }
}

@media screen and (orientation: portrait) { /* Regra para janelas retrato */
    .retrato {
        display: block;
    }
}

@media screen and (min-width:601px) { /* Regra para janelas com mais de 600px */
    main {
        min-height: calc(100vh - 16px - 100px);
    }
}


@media screen and (max-width:600px) { /* Regra para janelas com 600px ou menos */

    main,
    footer {
        margin-left: 100px;
    }

    main {
        min-height: calc(100vh - 16px);
    }
}
a {
    font-size: var(--tamanhoLink);
    text-decoration: none;
}


.menu {
    height: 10px;
    display: flex;
    justify-content:center ;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;

}

body {
    background-color: #ffe8df;
}

header {
    background-color: #f7cfc7;
    height: 20px;
}

header {
    padding: 20px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #e69e96;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #dd857e;
}