body {
    padding: 0 0;
    margin: 0 0;
    background: url("background.png");
    background-size: 1740px;
}
header {
    top: 0;
    z-index: 5;
    display: block;
    width: 100%;
    background: #D6C984;
    text-align: center;
    padding: 1px 0px;
}
header ul {
    display: inline;
    background: #D6C984;
    transition: top 0.5s ease;
    font-size: 3em;
}
header li {
    display: inline;
}
header nav a {
    color: black;
    text-decoration: none;
}
header nav input {
    display: none;
    margin: 0;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    opacity: 0;
}
header nav #hamburger {
    display: none;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
}
header nav span {
    display: block;
    width: 100%;
    height: 6%;
    margin-bottom: 40%;
    background: black;
    border-radius: 0.1rem;
  
    transform-origin: 50% 50%;
  
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}
header nav input:checked ~ #hamburger span {
    transform: translate(0, -750%) rotate(-45deg) scale(1.4, 1);
}
header nav input:checked ~ #hamburger span:nth-last-child(2) {
    transform: rotate(0deg) scale(0, 0);
}
header nav input:checked ~ #hamburger span:nth-last-child(3) {
    transform: translate(0em, 750%) rotate(45deg) scale(1.4, 1);
}
body>div.contentWindow {
    position: static;
    margin: auto;
}

div.stickypar {
    position: relative;
    margin: auto;
    max-width: 50rem;
}

article {
    font-family: Arial, Helvetica, sans-serif;
    background: rgba(200, 200, 200, 1);
    color: black;
}

article img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

article a {
    color: blue;
}

img.download {
    display: unset;
    margin-left: unset;
    margin-right: unset;
    margin: 1rem;
    height: 3rem;
    width: unset;
}

div.contentWindow>article {
    padding: 1rem;
}

.profile {
    padding: 0.5rem;
    float: right;
    background: rgba(250, 250, 250, 1);
    font-size: 1.5rem;
}

.profile img {
    max-width: 20rem;
}

.profile img.contact {
    margin: 0.25rem;
    max-width: 1rem;
}

article.activity {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

article.activity>.activity {
    margin: 0.5em;
    max-width: 15em;
    background: rgba(180, 180, 180, 1);
    padding: 0.5rem;
    transition: transform 0.5s;
    color: inherit;
    text-decoration-line: inherit;
}

article.activity>.activity:hover {
    transform: scale(1.1, 1.1);
}

article form {

}

form .info {
    width: 1em;
    display: inline;
}

.sticky {
    font-family: 'Brush Script MT', cursive, sans-serif;
    color: blue;
    display: flex;
    position: absolute;
    border: black;
    width: 10rem;
    height: 10rem;
    justify-content: center;
    align-items: center;
    padding: 0.4em;
}

.sticky img.profile {
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    float: right;
    width: 2em;
}

.sticky.left {
    transform: rotate(30deg);
    left: -12rem;
}

.sticky.right {
    transform: rotate(-30deg);
    right: -12rem;
}

@media only screen and (max-width: 600px) {
    header nav input {
        top: 5rem;
    }
    header nav #hamburger {
        top: 5rem;
    }
    .profile {
        float: unset;
    }
    .profile img {
        max-width: unset;
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    body>div.contentWindow {
        max-width: 100%;
        padding-top: 0rem;
    }
}
@media only screen and (max-width: 992px) {
    header {
        position: static;
    }
    header nav {
        position: fixed;
    }
    header ul {
        position: fixed;
        margin-top: 0px;
        left: 0%;
        width: 100%;
        top: -100%;
        z-index: 6;
    }
    header nav input {
        display: block;
        position: fixed;
        z-index: 8;
    }
    header nav #hamburger {
        display: block;
        position: fixed;
        z-index: 7;
    }
    header nav span {
        position: relative;
    }
    header li {
        display: block;
    }
    header input:checked ~ ul
    {
        top: 0%;
    }
    .sticky {
        display: none;
    }
}
@media only screen and (min-width: 992px) {
    header {
        position: fixed;
    }
    header nav {
        position: static;
    }
    header ul {
        position: static;
        display: inline;
    }
    header nav span {
        display: none;
    }
    header li {
        display: inline;
    }
    body>div.contentWindow {
        width: 50rem;
        padding-top: 8rem;
    }
    .sticky {
        display: none;
    }
}
@media only screen and (min-width: 1200px) {
    .sticky {
        display: flex;
    }
}
