@import url('//fonts.googleapis.com/css?family=Arvo');

body {
    margin: 0;
    background-color: #fff;
    color: #fff;
    font-family: Arvo, sans-serif;
    font-size: 13px;
    line-height: 24px;
    overscroll-behavior: none;
}

a:hover {
    text-decoration: underline;
}

#info {
    position: absolute;
    top: 20px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    font-family: Arvo, sans-serif;
    color: #000000;
    font-size: 24px;
    z-index: 1; /* TODO Solve this in HTML */
}

#contact {
    position: absolute;
    top: 35px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    font-family: Arvo, sans-serif;
    color: #000000;
    font-size: 14px;
    z-index: 1; /* TODO Solve this in HTML */
}

#about {
    position: absolute;
    top: 10px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    font-family: Arvo, sans-serif;
    color: #000000;
    font-size: 14px;
    z-index: 1; /* TODO Solve this in HTML */
}

#bottom {
    font-family: Arvo, sans-serif;
    color: #000000;
    font-size: 16px;
    position: fixed;
    bottom: 5px;
    left: 5px;
}

.footer {
    font-size: 12px;
    font-family: Arvo, sans-serif;
    position: fixed;
    text-align: center;
    bottom: 0px;
    width: 100%;
    color: #ffffff;
    background-color: #000000;
}


a, button, input, select {
    pointer-events: auto;
}

.dg.ac {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2 !important; /* TODO Solve this in HTML */
}

#menuToggle {
    display: block;
    position: relative;
    top: 25px;
    left: 25px;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#menuToggle a {
    text-decoration: none;
    color: #000000;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

#menuToggle a:hover {
    color: #282828;
}


/* The hamburger button hidden inside an input element */
#menuToggle input {
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    top: -7px;
    left: -5px;
    padding: 0;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    -webkit-touch-callout: none;
}

#menuToggle label {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
}

#menuToggle label span {
    display: none;
}

/*
 * Hamburger
 */
#menuToggle label div {
    display: block;
    width: 30px;
    height: 2px;
    margin-bottom: 6px;
    position: relative;
    background: #000000;
    border-radius: 3px;
    z-index: 1;
    -webkit-transform-origin: 4px 0px;
    -ms-transform-origin: 4px 0px;
    transform-origin: 4px 0px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#menuToggle label div:first-child {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}

#menuToggle label div:nth-child(2) {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
}


/*
 * Use absolute positioning to place the menu off-screen
 */
#menu {
    position: absolute;
    width: 100px;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
    background: #ffffff00;
    list-style-type: none;
    /* Hide the menu off-screen to the left */
    left: -100%;
    -webkit-transition: left 0.3s ease;
    -o-transition: left 0.3s ease;
    transition: left 0.3s ease;
}

#menu li {
    padding: 10px 0;
    font-size: 22px;
}

/*
 * Slide the menu in from left when the input is checked
 */
#menuToggle input:checked ~ ul {
    left: 0;
}

.wrapper {
    position: absolute;
    top: 100px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    font-family: Arvo, sans-serif;
    color: #000000;
    font-size: 14px;
    z-index: 1; /* TODO Solve this in HTML */
}

.image--cover {
  width: 150px;
  height: 150px;
  border-radius: 50%;

  object-fit: cover;
  object-position: center right;
}