.hero {
    background: url('../images/fire.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    height: 20vh; 
    position: relative;
    z-index: 0;
}

.over {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-size: 10vw;
    font-family: 'times';
    font-weight: bold;
    text-shadow: 8px 15px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    transition: transform 0.3s ease;
    margin: 0;
  
}

h1:hover{
  transform: scale(1.1);
}

.blah{
    color: #333;
    padding: 50px;
    /* z-index: 2; */
}
.please {
    color: #333;
    font-size: 4vw;
    padding: 40px 20px;
    /* background-color: rgb(178 0 255 / 30%); */
    display: flex;
    justify-content: center;
}

.please:hover{
    transform: scale(1) !important;
}


.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    /* padding: 50px; */
}

.project {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    box-sizing: border-box;
}
.project img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

.project h3 {
    font-size: 18px;
    margin: 10px;
}

.project p {
    font-size: 14px;
    margin: 10px;
}

.project .button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
    padding: 10px;
    background-color: #BA55D3;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
}

.project .button:hover {
    background-color: #c0392b;
}

/* Style the modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    /* display: flex; */
    align-items: center;
    justify-content: center;
}
/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Add Animation - Zoom in the Modal */
.modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

/* Close button */
.close {
    position: absolute;
    /* top: 15px; */
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    display: flex;
    align-items: center;
    display: none;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


