/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}


/* Menu Button */
.menu-button {
    position: center;
    top: 20px;
    left: 20px;
    font-size: 1rem;
    color: #b04535;
    cursor: pointer;
}

/* Sidebar Menu */
.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b04535;
    color: white;
    z-index: 10;
    padding: 20px;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar li {
    margin: 15px 0;
}

.sidebar a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.sidebar a:hover {
    text-decoration: underline;
}

/* Main Content */
.content {
    text-align: center;
    z-index: 1;
}

.content h1 {
    font-size: 2rem;
    color: #7e5841;
    margin-bottom: 10px;
}

.social-links a {
    margin: 0 10px;
    color: #7e5841;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Image */
.artwork {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .content h1 {
        font-size: 3rem;
    }

    .menu-button {
        font-size: 1.2rem;
    }
}

@media (min-width: 1200px) {
    .content h1 {
        font-size: 4rem;
    }
}
/* Estilos para a imagem principal */
.main-image {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  
  .main-image picture, .main-image img {
    max-width: 80%; /* Ajusta a largura máxima da imagem */
    height: auto; /* Mantém a proporção da imagem */
    border-radius: 0px; /* Opcional: bordas arredondadas para um visual suave */
  }
  