*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: IBM Plex Sans, arial;
}

body{
    min-height: 100vh;
    background: linear-gradient(dodgerblue, white);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
}

.header{
    position:fixed;
    top:0;
    left:0;
    width: 100%;
    padding: 20px;
    background: #20549c;
    display: flex;
    justify-content: space-between;
    /* you are adding space between each navigation button */
    align-items: center;
    z-index: 100;
    /* Z-index specifies the stack order of elements(which element should be placed in front of, or behind, the others) */
    
}

.logo{
    font-size: 30px;
    color: black;
    text-decoration: none;
    font-weight: 700;
}

.navbar a{
    position: relative;
    font-size: 18px;
    color: white ;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    max-width:auto;
}

.navbar a::before{
    content: '';
    /* add space before to create a hovering underline element */
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: .3s;
}

.navbar a:hover::before{
    width: 100%;
}

.wrapper{
    font-family: "IBM Plex Sans", arial;
    width: 80%;
    margin:0 auto;
    position: relative;
}


img {
    opacity: 1;
    display: block;
    max-width: 100%; /* Ensure the image doesn't exceed its container */
    height: auto;
    transition: .5s ease;
    max-height: 100%; /* Limit the height to 80% of the viewport */
    position: relative;
    margin: 20% auto 0 auto; /* Move the image down by 20% and center it horizontally */
}


.content{
    position: absolute;
    text-decoration: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: uppercase;
    font-size: 100px;
    color:white;
    white-space: nowrap;
    overflow:hidden;
    background-color:none;
    height: auto;
    text-align: center;
    max-width: 100%;
    max-height: 100%;
    margin: auto 0 auto;
}

.content a{
    font-size: 50px;
    display:block;
    color:white;
    background-color:none;
    text-align:center;
    padding:12px;
    cursor:pointer;
    text-decoration:bold;
}

.overlay{
    opacity:0;
    
}

.wrapper:hover img{
    opacity:0.6;
}

.wrapper:hover .overlay{
    opacity: 1;
}




/*font = IBM Plex Sans*/
/*font#2 = Inter*/








/*font = IBM Plex Sans*/
/*font#2 = Inter*/