* {
    font-family:'Montserrat';
    margin: 0;
}

body {
    margin: 0;
}

header {
    max-height: 50px;
    padding: 20px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: left;
    align-content: center;
}

header > * {
    max-height: inherit;
    object-fit: cover;
    font-family:'Montserrat';
    font-size: 25px;
    border-radius: 5px;

}


.splash {
    position: relative;

    width: 100%;
    max-height: 80vh;
    object-fit: cover;
}

.splashtext {
    position: absolute;
    bottom: 16px;
    left: 16px;

    padding: 20px;
    margin: 0;
    border-radius: 20px;

    background-color: black;
    color: orange;
    font-size: 20px;
}


.body {
    padding: 20px;
    max-width: 60vw;
}

.body > * {
    margin: 5px;
}




.panes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    
    gap: 2vw;
    padding: 5vw;
    padding-top: 0;
}

.panes > div{
    margin: 10px;
    width: 400px;
    height: 500px;
    background-color: rgb(243, 236, 236);
    border-radius: 3%;
    border: 1px solid black ;
}

.panes > div > img {
    padding: 0;
    margin: 5%;
    object-fit: cover;
    max-height: inherit;
    overflow: hidden;
    width: 90%;
    height: 70%;
    min-height: 250px;
    border-radius: 5%;
    border: 1px solid black ;
}

.panes > div > p {
    margin: 5%;
    margin: 10px;
    font-size: large;
}


footer {
    padding: 20px;
    column-gap: 20px;
    grid-auto-flow: row;
    justify-content: left;
    align-content: center;
    background-color: black;
    color:white;
}

footer > * {
    margin: 10px;
}