body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: rgb(255, 222, 201);
    text-align: center;
}

h1 {
    color: rgb(255, 255, 255);
    background-color: rgb(254, 181, 181);
    padding: 20px 20px;
    border: 1px solid rgb(254, 181, 181);
    border-radius: 5px;
    
    text-align: center;
}

h3 {
    font-size: 100px;
}

p {
    color: #000000;
    text-align: center;
}

.hover-heading {
    font-size: 2em;
    color: #ffffff;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 4px 4px 4px #b4b4b4da;
}

.hover-heading:hover {
    color: #ffffff;
    box-shadow: 4px 4px 4px #000000;
    transform: scale(1.0);
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgb(254, 181, 181);
    background-color: rgb(254, 181, 181);
    color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.5s ease;
    transform: scale(1.0);
    box-shadow: 3px 3px 3px #8d8b8b;
}

.button-link:hover {
    background-color: rgb(255, 165, 165);
    border: 1px solid rgb(255, 165, 165);
    box-shadow: 4px 4px 4px rgb(0, 0, 0);
}

.textboxone {
    background-color: rgb(255, 255, 255);
    padding: 50px 50px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    transform: scale(1.0);
}

.textboxone:hover {
    border-color: #ffffff;
    box-shadow: 8px 8px 8px rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}

.content {
    display: flex;
    align-items: center;
    margin: 20px;
}
.text-box {
    flex: 1;
    padding: 20px;
}
img {
    max-width: 200px;
    border-radius: 8px;
}

.image-container {
    text-align: center;
    margin-top: 50px;
}

.thumbnail {
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.popup {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    z-index: 1000;
    text-align: center;
}

.popup-content {
    margin-top: 10%;
    max-width: 90%;
    max-height: 80%;
    border: 2px solid white;
    box-shadow: 0 0 10px white;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.close:hover {
    color: red;
    transition: color 0.2s;
}

.caption {
    color: white;
    font-size: 16px;
    margin-top: 10px;
}

.popup {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; 
}

.popup-image {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hidden {
    display: none;
}

.popup-trigger {
    color: #e44e4e;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}