@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Mea+Culpa&display=swap');

/* Index and Navbar */

body {
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    background-color: white;
}

/* Navigation Menu and Responsiveness */

.navigation-menu {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .navigation-menu {
        display: block
    }
    .menu-hide {
        display: none
    }
}

/* Nav */

.navbar ul {
    flex: 1;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.navbar li {
    float: left
}

.navbar li a {
    font-family: "Cardo", sans-serif;
    text-decoration: none;
    color: black;
    padding: 14px 14px;
    display: flex;
    overflow: hidden;
    height: 25px;
    font-size: 15px;
}

.navbar li a:hover {
    background-color: rgb(181, 181, 181);
}

/* Icons */

.icons ul {
    flex: 1;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.icons li {
    float: left
}

.icons li a {
    font-family: "Cardo", sans-serif;
    text-decoration: none;
    color: black;
    padding: 14px 14px;
    display: flex;
    overflow: hidden;
    height: 25px;
    font-size: 15px;
}

.icons li a:hover {
    background-color: rgb(181, 181, 181);
}

/* Sculptures */

main {
    display: flex;
    flex-direction: column;
}

.board {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.board figure {
    max-width: 40%;
}

.board figure img {
    max-width: 100%;
}

.board figure figcaption {
    max-width: 100%;
    text-align: center;
}

@media only screen and (max-width:1200px) {
    .board {
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        justify-content: center;
    }
    
    .board figure {
        max-width: 100%;
        margin-bottom: 2em;
    }
    
    .board figure img {
        max-width: 100%;
    }
    
    .board figure figcaption {
        max-width: 100%;
        text-align: center;
    }
    
}

.dividor {
    font-family: "Mea Culpa", sans-serif;
    font-size: 2em;
    text-align: center;
}

.copyright {
    text-align: center;
    font-family: "Cardo", sans-serif;
}