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 {
    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; */
}


.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;
}

.about-section {
    z-index: 2;
    position: relative;
    display: grid;
    grid-template-areas: 
    "text1  image1"
    "image2 text2";
    top: 10px;
    background-color: rgba(215, 218, 203, 0.616);
    width: 90vw;
    max-width: 1200px;
    margin:5%;
    height: fit-content;
    /* border: 1px red solid; */
}
.about-image1{
    max-height: 30vw;
    grid-area: image1;
    max-width: fit-content;
    margin: 20px;
    background-color: white;
    padding: 10px;
}

.about-text1 {
    grid-area: text1;
    margin:20px
}
.about-image2{
    max-height: 30vw;
    grid-area: image2;
    max-width: fit-content;
    margin: 20px;
    background-color: white;
    padding: 10px;
}

.about-text2 {
    grid-area: text2;
    margin:20px
}

.workshop-calendar{
    z-index: 3;
    width: 90vw;
    height: fit-content;
    margin-bottom: 50px;
}

workshop-calendar-title {
    text-transform: capitalize;
}

.workshop-listings {
    z-index: 3;
    background-color: rgba(215, 218, 203, 0.816);
    height: fit-content;
    min-height: 100px;
    width:100%;
    display:flex;
    flex-flow: column nowrap;
}

.workshop-listing-item {
    width: 90%;
    display: flex;
    flex-flow: row wrap;
    margin: 20px 10px 60px 10px;
    justify-content: space-between;
}

.workshop-listing-attribute{
    width: fit-content;
    /* border: 1pt orange solid; */
    text-decoration:none;
}

.divider {
    width:90%;
    margin: 10px 5% 15px 5%;
    height: 1px;
    background-color: rgba(136, 156, 134, 0.616);
}

#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;
}