body {
    background-color: bisque;
}

.header img {
    height: 150px;
    width: auto;
    opacity: 0.8;
    display: block;
    margin: 0 auto;
}


.header h1 {
    display: block;
    text-align: center;
    border: 20px solid antiquewhite;
    padding: 40px;
}

.tick-list {
    list-style-type: none;
    text-align: center;
    border: 20px solid antiquewhite;
    padding: 1%;

}

.tick-list dt {
    font-size: 20px;
}

.apply-wrapper {
    display: flex;
    justify-content: center;
}

.apply-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007acc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 2%;
    text-align: center;
}

.apply-button:hover {
    background-color: #005fa3;  /* darker on hover */
    transform: scale(1.05);     /* subtle hover effect */
}

.body-text {
    text-align: center;
    border: 20px solid transparent;
    padding: 40px;
    font-size: 20px;

}

body {
    margin: 50px 50px 50px 50px;
}

.pictures img {

    margin: 5%;
    width: 25%;
    height: 30%;
}

.vision {
    text-align: left;
    margin-top: 40px;
}

.pictures, .vision {
    margin: 0;
    padding: 10px;
}

#business {
    text-align: center;
    font-size: 20px;
    border: 20px solid antiquewhite;
    padding: 1%;
}

#email {
    text-align: center;
    text-decoration: none;
}

#foot {
    text-align: center;
}


#pic2 {
    margin-left: 2.3%;
    margin-bottom: 10%;
    width: inherit;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}




