body {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Scope One";
    src: url("fonts/ScopeOne-Regular.ttf");
}

@font-face {
    font-family: "AncizarSans";
    src: url("fonts/AncizarSans-VariableFont_wght.ttf");
}

/*-------------- Header -------------*/

header {
    display: flex;
    flex-flow: nowrap row;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #050505;
}
header img {
    width: 64px;
    height: 64px;
}
#menubar {
    align-content: center;
    height: 64px;
}
#menubar div {
    width: 35px;
    height: 5px;
    background-color: white;
    margin: 6px 0;
}

/*-------------- Main ---------------*/

main {
    background-color: #f5f1e3;
}

#intro-content {
    display: grid;
    grid-template: 1fr 1fr / 1fr 1fr;
    height: 700px;
    width: 100%;
}
#intro-content img {
    grid-column: 1/3;
    grid-row: 1/3;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 10%;
    object-fit: contain;
    margin-top: 5px;
}
#intro-content a {
    grid-column: 2/3;
    grid-row: 2/3;
    justify-self: flex-end;
    align-self: flex-end;
    z-index: 1;
    background-color: #1b9aaa;
    text-decoration: none;
    border-radius: 7px;
    color: #ffffff;
    padding: 10px;
    margin: 100px;
    font-family: "AncizarSans", serif;
}

#gallery-content {
    display: grid;
    grid-template: 2fr 1fr 1fr / 2fr 1fr 1fr 2fr 1fr 1fr 2fr;
    height: 1000px;
    width: auto;
}
#gallery-content img {
    object-fit: cover;
    /*height: 100%;*/
    width: 100%;
    border: black solid 2px;
}
#img1 {
    grid-column: 1/3;
    grid-row: 1/3;
}
#img2 {
    grid-column: 3/6;
    grid-row: 1/2;
}
#img3 {
    grid-column: 6/8;
    grid-row: 1/2;
}
#img4 {
    grid-column: 3/5;
    grid-row: 2/3;
}
#img5 {
    grid-column: 5/7;
    grid-row: 2/4;
}
#img6 {
    grid-column: 7/8;
    grid-row: 2/4;
}
#img7 {
    grid-column: 1/2;
    grid-row: 3/4;
}
#img8 {
    grid-column: 2/4;
    grid-row: 3/4;
}
#img9 {
    grid-column: 4/5;
    grid-row: 3/4;
}
/*#img10 {*/
/*    grid-column: ;*/
/*    grid-row: ;*/
/*}*/
/*#img11 {*/
/*    grid-column: ;*/
/*    grid-row: ;*/
/*}*/
/*#img12 {*/
/*    grid-column: ;*/
/*    grid-row: ;*/
/*}*/

#commission-content {
    height: 400px;
}
#commission-content h1 {
    height: 150px;
    justify-self: center;
    align-content: center;
    margin: 20px;
    padding: 0 200px;
    font-family: "Scope One", serif;
    text-align: center;
}
#commission-content p {
    height: 100px;
    justify-self: center;
    align-content: start;
    margin: 30px;
    padding: 0 130px;
    text-align: center;
    font-family: "AncizarSans", serif;
}
#commission-content a {
    height: 50px;
    justify-self: left;
    align-content: center;
    margin: 100px;
    text-decoration: none;
    color: white;
    background-color: #1b9aaa;
    padding: 10px 20px;
    border-radius: 7px;
    font-family: "AncizarSans", serif;
}

/*------------- Footer --------------*/

footer {
    background-color: #050505;
    height: 50px;
    margin: 0;
    padding: 30px;
}
footer h3 {
    color: white;
    text-align: center;
    justify-self: center;
    margin: 5px;
}
footer h4 {
    color: white;
    text-align: center;
    justify-self: right;
    padding: 0 5px;
    margin: 0 0 5px 0;
}
#footer-container {
    width: 100%;
    display: flex;
    flex-flow: nowrap row;
    justify-content: space-between;
}
#footer-container form input {
    border-radius: 10px;
    padding: 5px;
    margin: 0 5px;
}
#footer-container form label {
    color: white;
    font-family: AncizarSans, serif;
}
#footer-imgs {
    width: 100px;
    display: flex;
    flex-flow: nowrap row;
    justify-content: space-around;
}
#footer-imgs img {
    height: 32px;
    width: 32px;
}

