
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    line-height: 1.6;
}

p {
    text-align: center;
}

header {
    background: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
}

nav {
    background: #444;
    text-align: center;
    padding: 10px 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: yellow;
}


.banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 350px;
    object-fit:contain;
}
 .container img{
    width: 100%;
    height: 350px;
    object-fit:contain;
 }
 .container h3{
    text-align: center;
 }

.container {
    width:100%;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h2 {
    margin-bottom: 15px;
    color: #333;
    text-align: center;
    text-transform: capitalize;
}


footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}


form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #aaa;
    border-radius: 5px;
}

form button {
    background: teal;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background: darkcyan;
}
a { text-decoration: none;}
#content .dataitems {margin-top: 15px;border-bottom-style: solid;}
#content .dataitems> .items
    {
        width: auto; height: auto; background-color: darkgray;
        text-align: center; display: inline-block;
        object-fit:contain;
        overflow: hidden;
        margin: 100px;
    }
#content .dataitems .items h1:hover{color: antiquewhite;font-weight: bold;}
#content .dataitems .items:hover img{width: 110%;}
#content .dataitems.express:hover .items{background-color: brown;}

