body {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: rgb(0, 0, 0);
    overflow-y: scroll;
    overflow-x: hidden;
}

a {
    color: unset;
    text-decoration: unset;
}

.navbar{
    z-index:10;
    position: relative;
    top: 15px;
    left: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 8vh;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(136, 156, 134, 0.616);
    text-transform: capitalize;
    font-size: x-large;
    color: black;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.navbar-link {
    z-index: 11;
    cursor:pointer;

}

.content{
    position: absolute;
    overflow-y: hidden;
    height: fit-content;
    display: flex;
    flex-direction: column;
    width:100vw;
    align-items: center;
    justify-items: center;
}

.title-image {
    z-index: 3;
    position: relative;
    top: 1vh;
    text-transform: capitalize;
    /* width: 300px; */
    height: fit-content;
    display: flex-column;
    text-align: center;
    /* border: 2px rebeccapurple solid; */
    /* padding: 20px; */
}

.main-pic {
    width: 25vw;
    padding: 2px;
    background-color: rgb(236, 255, 234);
    /* border-radius: 20% */
}

.social-media-links-section {
    z-index: 10;
    display: flex;
    flex-direction: row;
    position:relative;
    justify-content: space-around;
    width: 500px;
    margin-bottom: 30px;
}

.social-media-link{
    display: flex;
    flex-direction: row;
    width: 250px;
    justify-content:center;
    align-items: center;
}

.social-buttons {
    padding: 10px;
    width:1.5em;
    height: 1.5em;
}

.main-section {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items:center;
    top: 10px;
    /* background-color: rgba(207, 239, 204, 0.616); */
    width: 90vw;
    max-width: 1200px;
    margin:5%;
    height: fit-content;
    /* border: 1px red solid; */
}
.art-image{
    max-height: 30vw;
    grid-area: image1;
    max-width: fit-content;
    margin: 20px;
    background-color: white;
    padding: 10px;
}

.art-text {
    grid-area: text1;
    margin:20px;
    background-color: rgba(207, 239, 204, 0.616);
    padding: 20px;

}

#background-mask {
    z-index: 1;
    position:fixed;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: rgb(181, 201, 180);
}

#background-image {
    z-index: 0;
    width: fit-content;
    opacity: 0.2;
}