@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playwrite+SK:wght@100..400&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    color: #ffffff;
    background-color: #000000;
}

header {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1000;
}

.logo {
    margin-top: 15%;
    margin-left: 20%;
    width: 150px;  
    height: auto;
}

.container {
    display: flex;
    height: 100vh;
}

.section {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

a {
    color: white;
    text-transform: uppercase;
}

a:link { 
    text-decoration: none; 
}

a:visited { 
    text-decoration: none; 
} 

a:hover { 
    text-decoration: none; 
} 

a:active { 
    text-decoration: none; 
}

#restaurant {
    background: url('/assets/sala.jpg') no-repeat center center;
    background-size: cover;
}

#events {
    background: url('/assets/eventos.png') no-repeat center center;
    background-size: cover;
}

h2 {
    margin: 0;
    font-size: 2em;
    font-weight: normal;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 31, 31, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.9em;
}

footer p {
    margin: 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 10px;
}

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