body, html {
    font-family: 'Trebuchet MS';
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
}

.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;
    flex-wrap: wrap;
}

.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;
}


.contactus {
    font-size: 20px;
    background-color: black;
    color: white;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}


.committee {
    font-family: 'Trebuchet MS';
    font-size: 18px;
    background-color: rgb(217, 239, 251);
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
}
.cotitle{
    border-radius: 20px;
    padding-top: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: rgb(217, 239, 251);
    color: rgb(119, 43, 234);
    font-size: 20px;
    text-align: center;
}

.r {
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%; 
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
    flex-wrap: nowrap; 
    overflow-x: auto; 
}

.images {
    text-align: center;
    width: 250px;
    margin: 10px;
}

.images p {
    margin: 3px;
    padding: 0px;
}

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

a:visited {
    color: white;
}

a:hover {
    color: red;
}

a:active {
    color: white;
}


@media screen and (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;
    }

    .committee {
        margin-left: 10px;
        margin-right: 10px;
    }

    .r {
        flex-direction: column;
        align-items: center;
    }

    .images {
        width: 80%;
        margin-bottom: 10px;
    }
}
