* {
    padding: 0;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    background-color: rgb(213, 91, 30);
}

header {
    background-color: rgb(227, 100, 83);
    background-image: url(../img/boraque\ 1.jpeg);
    background-size: cover;
    background-position: center 40%;
    text-align: center;
    height: 250px;
}

nav ul li{
    display: inline-block;
}

main {
    background-color: rgb(227, 113, 31);
    min-height: 500px;
    display: flex;
}
section {
    background-color: rgb(209, 60, 37);
    /* float: left; */
    width: 66%;
    min-height: 300px;
}
aside {
    background-color: rgb(227, 64, 19);
    /* float: right; */
    min-height: 300px;
    width: 34%;
}
sectionc.bio{
    width: 100%;
    display: flex; 

}
footer {
    background-color: rgb(216, 144, 35);
        text-align: center;
    height: 150px;
}

header, nav, main, section, aside, footer {
    /* padding: 20px 15px 100px 15px; */
    /* top right bottom left */
    padding: 20px 15px 100px;
}

nav{
    padding: 20px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 10px;
    font-family: 'Oswald', sans-serif;

}


a{ 
    text-decoration: none;
    color: aquamarine;
    font-weight: bold;
}
a:hover {
    color: rgb(255, 241, 219);

}
h1, h2 {
    font-family: 'Oswald', sans-serif;
    color: rgb(232, 239, 248);
}

header h1{
    margin-top: 10%;
}

/* gallery */

.gallery{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-column-gap: 5vw;
    grid-row-gap: 5vh;
    width: 90%;
    padding: 20px;
    /*box-sizing: border-box; */
    max-width: 1280px;           


    position: relative;
    margin: 0 auto;
}               
.boxes{
    background-color: rgb(74, 88, 117);
    width: 100%;
    min-height: 200px;
    border: 5px dotted rgb(63, 129, 214);
    box-shadow: 24px 25px 57px 0px rgba(0,0,0,0.75);
    border-radius: 23px;
    height: fit-content;
}
@media only screen and (max-width: 1024px) {
   .gallery{
        grid-template-columns: 1fr 1fr;
    }
    /* .boxes{
        background-color: blueviolet;
    } */

}
@media only screen and (max-width: 640px) {
    .gallery{
        grid-template-columns: 1fr;
    }
    /* .boxes{
        background-color: initial;
    } */

}

figure.boxes img{
    width: 100%;
    border-radius: 19px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform-origin: top center;
    transition: all 0.3s ease-in;
} 
figure.boxes img:hover{
    transform: scale(1.5);
}

section.bio{
    width: 100%;
    display: flex;
    padding: 15px !important;
    box-sizing: border-box;
    background-color: rgb(231, 116, 55); 
}