body {
    background-color: rgb(0, 0, 0);
    font-family: 'Inconsolata', monospace;
    font-size: small;
    margin: 0px;
    padding: 0px;
}
h1 {
    color: rgb(255, 255, 255);
}
h2 {
    color: rgb(255, 255, 255);
    text-align: center;
    display: flex;
}
header {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 100px 40px 10px 40px;
}

.triplesection {
    color: snow;
    display: flex;
    flex-direction: row;
}
div {
    background: rgb(0, 0, 0);
    margin: auto;

}
.lmenu {
    display: inline-block;
    margin-right: 20px;
    text-decoration: underline;
}
.lmenu:hover{
    color: fuchsia;
}
.abouttext{
    text-align: left;
    display: flex;
    margin-left: 40%;
    margin-right: 40%;
    color: white;
}

.description{
    text-align: left;
    display: flexbox;
    margin-left: 35%;
    margin-right: 35%;
    color: white;
}
.myGalleryRow {
    display: flex;
    flex-wrap: wrap;
    margin-left: 20%;
    margin-right: 20%;
    }

.myGalleryColumn {
flex: 25%;
max-width: 100%;
margin-top:0px;

}

.myGalleryColumn img {
margin-top: 8px;
vertical-align: middle;
width: 100%;
}
@media screen and (max-width: 800px) {
    .myGalleryColumn {
        flex: 50%;
        max-width: 50%;
    }
}
@media screen and (max-width: 600px) {
    .myGalleryRow{
        margin-left: 0%;
        margin-right: 0%;
    }
    .myGalleryColumn {
        flex: 100%;
        max-width: 100%;
    }
}
@media only screen and (max-width: 600px) {
    .lmenu {
        display: flexbox;
        font-size: large;
    }
    .abouttext{
        margin-left: 15%;
        margin-right: 15%;
    }
    .description{
        margin-left: 15%;
        margin-right: 15%;
        color: white;
    }
}



.center{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
}

.lefttext{
    text-align: left;
}
.centertext{
    text-align: center;
}
.righttext{
    text-align: right;
}
.link {
    display: inline-block;
    margin-right: 20px;
    text-decoration: underline;
}
.link:hover{
    color: fuchsia;
}
.myGallery {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}
.workvideo{
    display: block;
    width: 100%;
}
@media only screen and (max-width: 600px) {
    .workvideo{
        display: block;
        width: 100%;
    }
    .myGallery {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
.myGallery img {
    width: 100%;
}

.myGallerySingleColumn {
    display: block;
    margin-left: auto;
    margin-right: auto;

    width: 60%;

}
@media only screen and (max-width: 600px) {
    .myGallerySingleColumn {
    display: block;
    width: 100%;
    }
}
.myGallerySingleColumn img {
    width: 100%;
    margin-top: 8px;

}
.content {
    position: fixed;
    top: 0%;
    left: 50%;
    text-align: center;
    background: rgba(0, 0, 0, 0);
    color: #ffffff;
    width: 100%;
    transform: translateX(-50%)
    }
a {
    color: inherit;
    text-decoration:none; 
    text-align: center;
}
