body {
    margin: 0;
    padding: 0;
    font-family: verdana;
    text-align: center;
    display: grid;
    grid-template-columns: auto 0px;
    background-color: #32256b;
}
#wrapper {
    margin: 50px auto;
    width: 90%;
    min-width: 600px;
    max-width: 1000px;
    box-shadow: 0px 0px 50px black;
    border-radius: 50px;
    background-color: white;
    padding-bottom: 50px;
}
#header {
    padding-top: 20px;
    border-radius: 50px 50px 0px 0px;
    background: url("../img/header.jpg");
    background-size: cover;
}
#header .menu a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 4px 8px;
    border-radius: 10px;
}
#header .menu {
    display: inline-block;
    text-align: justify;
    border-radius: 10px;
    margin-bottom: 20px;
}
#header .menu a:hover {
    background-color: #654BD7;
    color: #E5E0F1;
}
#content div {
    padding: 0px 10px;
    line-height: 20px;
    margin: 10px 0px;
}
span {
    background-color: lightgrey;
}
h2 span {
    padding: 5px 10px;
    border-radius: 12px;
}
div span {
    padding: 0px 6px 2px 6px;
    border-radius: 8px;
}
.top {
    --offset: 70px; 

    position: sticky;
    bottom: 20px;      
    margin-right: 10px; 
    place-self: end;
    margin-top: calc(100vh + var(--offset));

    /* visual styling */
    width: 6.7vw;
    min-width: 45px;
    max-width: 75px;
    aspect-ratio: 1;
    background: #ff8b24;
    border-radius: 10px;
}
.top:before {
    content: "";
    position: absolute;
    inset: 30%;
    transform: translateY(20%) rotate(-45deg);
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
}
#content div img {
    max-width: 500px;
}
.img-shadow img {
    box-shadow: 0px 0px 5px;
    margin: 10px 0px;
}
#content h1 {
    background-color: #654BD7;
    color: #E5E0F1;
    padding: 5px 10px;
    margin: 0px 0px 20px 0px;
    box-shadow: inset 0px 2px 2px rgba(255,255,255,0.5), inset -0px -2px 2px rgba(0,0,0,0.5);
    text-shadow: 2px 2px 2px black;
}
.note {
    display: inline-block;
    max-width: 90%;
    background-color: rgba(255, 255, 0, 0.5);
    padding: 10px !important;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid black;
}
#content div img.left, #content div img.right {
    width: 48%;
    max-width: 485px;
}
#content div img.left {
    margin-right: 1%;
}
#content div img.right {
    margin-left: 1%;
}
.float .grid {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}
.float img {
    width: 100%;
}
.float .grid div {
    width: 100%;
    padding: 0 !important;
    line-height: 24px !important;
    text-align: left;
    font-size: 1.1em;
}
