/* style for header section*/
.logo{
    display:inline;
    font-size: 200px;
    text-align: center;
}
body{
    display: flex;
    flex-direction:column ;
    min-height: 100vh;
    margin: 0;
}

.container {
    width: 100%;
    margin: 0 auto;
    text-align: center;

}
.fixed-header, .fixed-footer {
    display: flex;
    width: 100%;
    background: green;
    padding: 10px;
    color: #fff;
    justify-content: space-around;
    align-items: center;
   
    
}
.fixed-header{
    top: 0;

}
.fixed-footer{
    bottom: 0;
}

nav{
    position: relative;
    border: 10px;
    background-color: black;
    color: #000;
    padding: 10px;
    text-align: center;
}
a{
    color:white;
    font-size: larger;
    text-align: center;
    padding: 50px;
}

form{
    border: 2px solid black;
    padding: 20px;
    width: 400px;
    
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(red, green, blue, alpha);
    background-color: rgb(191, 194, 203);
}

   
   
        
       
    #imagerow{
        width: 100%;
        max-width: 1200px;
        margin: 20px auto;
    }
    .imageitem{
    float: left;
    width: 20%;
        padding: 10px;
       box-sizing: border-box;

        text-align: center;
        
    }
.imageitem img{
    width: 100%;
    height: 200px;
    border: 2px solid black;
    object-fit: cover;
    
}
    
    .imageitem:hover{
        transform: scale(1.2);
        z-index: 2;
        transition: 1s;
    }
.white{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 15px;
    background-size: 20px;
    border: 2px solid red;
    color: white;
    background-color: #000;
}
.blue{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 30px;
    color: Black;
}

.content {
    text-align: center;
}
.content img {
    width: 100%;
    max-width: 300px;
    margin: 10px;
}
.slider {
    
    overflow: hidden;

    }
    .slider figure img{
        width:8% ;
        float: left;
        padding: 6px;
    }
    .slider figure {
        width: 400%;
        position: relative;
        margin: 0;
        padding: 0;
        animation: 9s slide infinite;
    }
    @keyframes slide {
        0%{ left: 0%;}
        16%{ left: 0%;}
        33%{ left: -100%;}
        49%{ left: -100%%;}
        66%{ left: -200%;}
        82%{ left: -200%;}
        100%{ left: 0%;}
        
        
    }
    