body {
    font-family: 'Arial', sans-serif;
    margin: 20px;
    text-align: center;
}

.coolText {
    font-family: 'Courier New', monospace;
    letter-spacing: 4px;
    color: #333;
    transform: rotateX(0deg) rotateY(23deg);
    transform-style: preserve-3d;
    text-shadow: 5px 5px 13px #000000;
}

#headshot {
    border-radius: 10%;
    max-width: 600px;
    margin: 20px;
    filter: drop-shadow(5px 5px 10px #000000);
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: #054a94;
    font-weight: bold;
}

.bg-image {
    position: relative;
}

.bg-image img {
    width: 100%;
    height: auto;
}

.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust the tint color and opacity here */
    display: flex;
    justify-content: center;
    align-items: center;
}

.mask h2 {
    color: white;
    font-weight: bold;
    margin-bottom: 0;
}

/* dropdown menu */

.glyphicon-nav {
    width: 18px;
    padding: 8px 0;
    position: relative;
    display: inline-block;
}
.glyphicon-nav:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    border-top: 2px solid blue;
    border-bottom: 2px solid blue;
    top: 0px;
}
.glyphicon-nav:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 0px;
    height: 2px;
    width: 100%;
    background: blue;
}

/* Blog list styling */
.container ul {
    list-style-type: none;
    padding: 0;
}

.container ul li {
    margin: 10px 0;
}

.container ul li a {
    text-decoration: none;
    color: #054a94;
    font-weight: bold;
}

.container ul li a:hover {
    text-decoration: underline;
}