
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ecebe4;
    text-decoration: none;
    display:grid;
    display: flex;
    flex-direction: column;


    min-height: 100vh;
}
p{
    color:black;
    text-decoration: none;
}

/*from this point on this is the navigation bar*/
li, a, button{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 26;
    color:black;
    text-decoration: none;
}

header{
    display: flex;
    justify-content:center;
    align-items: center;
    padding: 30px 10%;
}
.Header{
    font-size:xx-large;
}
.Header:hover{
text-decoration: underline;
}


.bottomWarning{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    font-size: 10;
    color:#ecebe4;
    text-decoration: none;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%,-50%);

}
/* The center pictures ----------------------------*/

.container {
    position: relative;
    width: 500px;
    height: 300px;
    display: inline-block;
}

.image {
    position: relative;
    display: block;
    object-fit: cover;
    width: 500px;
    height: 300px;

}
.text {
    object-fit: cover;
    color: black;
    font-size: 35px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: sans-serif;
    
}
.text:hover{
    text-decoration:underline;
}
.overlay {
    position: absolute;
    opacity: 0;
    transition:all .35s ease-in-out;
    background-color: #c23350;
}
.container:hover .overlay,.container:hover .overlayFade {
    opacity: 0.8;
}

.overlayLeft{
    height: 100%;
    width:0;
    top:0;
    left:0;
    background-color: #c23350;   
}
.overlayRight{
    height: 100%;
    width: 0;
    top:0;
    right:0;
    background-color: #c23350;
}
.container:hover .overlayLeft ,.container:hover .overlayRight {
    width: 100%;
    
}

.hoveringContainer:nth-child(odd) {
    height: 300px;
    width: 400px;
    width: fit-content;
    margin: 2em 25% 2em 2em;
    /* border: 2px red solid; */
    border-radius: 10px;
    overflow: hidden;
}

.hoveringContainer:nth-child(even) {
    height: 300px;
    width: 500px;
    width: fit-content;
    margin: 2em 2em 2em 25%;
    /* border: 2px blue solid; */
    border-radius: 10px;
    overflow: hidden;
}

.hoveringContainer a{
    color: white;
}
/*flexbox*/





/* Footer */
.note{
    padding: 1px 70px;
}
footer{
    background-color:rgba(255, 255, 255, 0);
    color: black;
    padding: 10px;
    border-radius: 5px;
    margin-top: auto;
}

.socials{
    list-style: none;
    
}
.github .linkedin{
    font-style: italic;
}
.socials li{
    display: inline-block;
    
}
.socials li a{
    transition: all 0.3s ease 0s;
    color: black;
}
.socials li a:hover{
    color: #ff0000;
    text-decoration: underline;
}

/* Footer End */



