* {
    padding: 0;
    margin: 0;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(65, 74, 125);
    text-decoration: none;
}
header{
    background-image: url();
    background-color: rgb(57, 68, 130);
    background-size: contain;
    text-align: center;
    background-repeat: no-repeat;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    height: 700px;
    margin-top: 115px;
    overflow-y: hidden;
}

h1{
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(77, 102, 185);
    padding-bottom: 0px;
    font-size: 60px;
    text-transform: uppercase;
    margin-top: 300px;
    background-color: lavender;
    opacity: 75%;
}
h2 {
    text-align: center;
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}
nav ul li {
    display: inline-block;
}
nav{
    padding: 20px 15px;
    word-spacing: 50px;
    text-align: center;
    box-sizing: border-box;
    width: 100vw;
    position: fixed;
    top: 0px;
    background-color: rgb(91, 102, 160);;
    font-size: 30px;
}

nav ul li a{
    text-decoration: none;
    word-spacing: 50px;
}

nav ul li a :hover{
    color: aqua;
}

a{
    color: rgb(230, 232, 250) ;
    text-decoration: none;
}

a:hover {
    color: aliceblue;
}

video{
    width: 100%;
}

h3{
    color: aliceblue;
}

#comms{
    background-color: rgb(59, 136, 169);
}

section{
    color: aliceblue;
    background-color: rgb(47, 52, 82);
    padding: 10px;
    /* float: left; */
}

section.about{
    text-align: center;
    font-size: 20px;
    padding: 20px;
}

section.about p{
    max-width: 50rem;
    margin: 0 auto;
}

section.bio{
    padding: 20px;
}

aside{
    background-color:lightgray;
    background-position: center;
    width: 50%;
    float: right;
    height: 100px;
    width: 30%;
    text-align: left;
    background-repeat: no-repeat;
    background-size: cover;
}
#work{
    padding: 20px;
    text-align: center;
    width: 100%;
    min-height: 100px;
    border-radius: unset;
    box-sizing: border-box;
    display: block;
    word-spacing: 20px;
    /* display: flex; */
}

img{
    width: 90%;

}
.boxes{
    background-color: lightgray;
    width: 100%;
    min-height: 200px;
    border: 2px solid black;
    box-shadow: 14px 9px 15px 0px rgb(50 50 50 / 59%);
    height: fit-content;
}

.boxes img {
    width: 100%;
    transform-origin: top center;
    transition: all 0.4s ease-in;
}

.responsive {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

figcaption{
    color:black
}

#gallery{
    background-color: rgb(79, 152, 186);
    grid-column-gap: 5vw;
}

#gallery img{
    transition: 0.2s;
    width: 100%;
    transform-origin: top center;
    min-height: min-content;
}

@media screen and (min-width: 522px){
    header{
        margin-top: 70px;
    }
}
@media screen and (min-width: 600px){
    #gallery{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}