body{
    max-width: 100%;
    margin:0;
    margin-bottom: 64px;
    width:auto;
    font-family: Figtree;
}

body a {
    color: #1580eb;
    text-decoration: none;
}

.content {
    text-align: left;
    width: auto;
    margin:auto;
    justify-content: center;
    width: 45%;
    line-height:1.4rem;

    img {
        margin-left:20%;
        margin-right:20%;
        margin-top:5%;
        width:60%;
        max-height: 100vh;
        object-fit: scale-down;
    }

}


#return-to-top-button{
    display: none;
    position: fixed;
    bottom: 64px;
    left: 32px;
    z-index: 99;
    border:none;
    outline:none;
    background-color: #1580eb;
    color: white;
    cursor: pointer;
    padding: 15px;
    font-size: 18px;
}

body a {
    color: #1580eb;
    text-decoration: none;
}

#return-to-top-button:hover{
    background-color: #116ac2;
}

@media screen and (max-device-width: 500px) {
    .content{
        width: 95%;
        margin:auto;
        margin-bottom: 144px;
        line-height: 2.2rem;
        img {
            width:60%;
        }
    }

    #return-to-top-button{
        display: none !important;
    }

}