*{
    box-sizing:border-box;}




header{
    background-color: #093051;
    height: 30px;
    width:auto;
    text-align: center;
    padding-top: 6.5px;
    font-family: sans-serif;
        color: white;
    
}

header a{
    text-decoration-line: none;
    color: white;
    word-spacing: 30px;
    font-size: .8em;
}  

header a:hover{
    text-decoration: none;
    color:lightblue;
    
}


.logo{
    display: grid;
    place-items: center;
    padding-top:30px;
}

#big-text{
    color:white;
    font-family: serif;
    font-size:2em;
    text-align: center;
    margin-top:-20px;
    
}

#small-text{
    color:white;
    font-family: serif;
    font-size: 1em;
    font-style:italic;
    text-align: center;
    margin-top:-20px;
}

#background{
    background-image:url(background.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    position:relative;
    min-width: 50%;
    max-width: 100%;
    
    width:auto;
    height:100%;
    
}

#bottom{
    height:30%;
    background-color: #093051;
  
   
   
}

#bottom p{
    color:white;
    font-style: italic;
    line-height:2;
    text-align: center;
    padding-left: 25%;
    padding-right:25%;
    padding-top: 1%;
    padding-bottom: 1%;
    margin-top:25%;
    position:sticky;
    
}


body{
    margin:auto;
    min-height: 100vh;
 
    display: flex;
    flex-direction: column;
}
footer{
    background-color: black;
    color:white;
    text-align:center;
    padding-top:8px;
    font-size: .5em;
    height:30px;
    width:auto;
    bottom:0;
    
    
}

.flexbox{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:35px;
    padding:20px;
    position:relative;
    
}

.image-container{
    position:relative;
    opacity:0.7;
    transition:opacity 2s ease;
    background-color: rgb(0,0,0,0);
    padding:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    width:120px;
    height:120px;
    overflow: hidden;
    border: 2px solid white;
    box-sizing: border-box;
}

.image-container:hover{
    opacity:1;
    background-color:rgba(255, 255, 255, 0.3);
}
.image-container img{
    width:100%;
    height:auto;
    display:block;
    transition: transform 2s ease;
}

.image-container:hover img{
    transform:scale(1.05);
}

.blue{
    color:blue;
}