body{
    background-color: #181A18
  }
  
body:before{
    background: none;
}

.name{
    font-weight: bold;
}

.nav-link {
    color: white !important; /* Making the link color white */
    transition: color 0.3s; /* Adds a smooth transition effect when the link color changes, e.g., on hover */
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.7) !important; /* Slight fade on hover for some interaction feedback */
}

/* Apply the Oswald font to body for global application */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #181A18; /* Primary blue color for header */
    color: #ffffff; /* White text color for header */
    padding: 10px 20px;
    margin-bottom: 20px;

    font-size: 20px;
}

body {
    font-family: 'Oswald', sans-serif;
}


/* Spacing between images and adding some styles */
.photo {
    margin-bottom: 30px; /* Extra space at the bottom of each image */
}

.photo img {
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for both hover effects */
    position: relative; /* Required for z-index to work */
}

/* Updated hover effects for images */
.photo img:hover {
    transform: scale(1.3); /* Enlarges the image */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
    z-index: 1; /* Brings the hovered image to the front */
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    align-items: center;

}

.modal-content {
    margin: auto;
    display: block;
    width: unset;
    max-height: 80%;
    max-width: 700px; /* You can adjust this value */
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/* Ensure the close button is visible on all screen sizes */
.close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 40px; /* You can adjust this if it's too large or too small */
    font-weight: bold;
    z-index: 2; /* Make sure it's above the modal-content */
}

/* Adjusting the close button for smaller screens */
@media (max-width: 768px) {
    .close {
        font-size: 30px; /* Smaller font size for smaller devices */
        top: 10px;
        right: 10px;
    }
}

/* Adjusting the modal content for smaller screens */
@media (max-width: 768px) {
    .modal-content {
        width: 90%; /* Take up more width on smaller screens */
        max-width: none; /* Remove max-width restriction */
    }
}



/** Dad updates 1-9-24 **/
header {
    flex-direction: column;
    padding-top: 30px;
    
}

.name {
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.name span {
    font-size: .7em;
    display: block
}

.navbar-nav {
    flex-direction: row;
    gap: 20px;
    font-size: 20px;
    text-transform: uppercase;
    align-items: center
}

.photo img {
    cursor: pointer
}

.photo img:hover {
    transform: scale(1.05)
}