body, html {
    font-family: 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
}

.spact, .head, .iap {
    width: 25%;
}

.head {
    width: 50%;
}

img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    background-color: black;
    padding: 10px 0;
}

.items {
    font-family: 'Trebuchet MS';
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
}

.items:hover {
    color: red;
    border-radius: 5px;
}

.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    font-family: 'Trebuchet MS';
    font-size: 18px;
    background-color: rgb(217, 239, 251);
    margin: 20px;
    border-radius: 20px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
}

.photos img {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    height: 300px;
    width: 300px;
}

.contactus {
    font-size: 20px;
    background-color: black;
    color: white;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    text-align: left;
}

a {
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
}

a:hover {
    color: red;
}

a:active {
    color: white;
}

@media (max-width: 1200px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .spact, .head, .iap {
        width: 100%;
    }

    .menu {
        flex-direction: column; 
    }

    .items {
        font-size: 18px;
        padding: 10px 20px;
    }

    .photos img {
        height: 250px;
        width: 250px;
    }
}