@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --link-color: #262626;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    max-width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.box {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 100%;
    margin-top: 5%;
    padding-left: 5%;
    padding-right: 5%;
    background-color: rgba(255, 255, 255, 0.75);
    align-items: center;
    margin-top: 25vh;
    margin-bottom: 15%;
}

.box h2 {
    margin: 2.5%;
}

.box .text {
    margin: 2.5%;
}

.box .picture {
    display: flex;
    flex-direction: column;
    float: right;
    margin: 2.5%;
    align-items: center;
}

.box .picture img {
    width: calc(100vw / 3);
    border-radius: 5px;

}

.box .picture p {
    color: var(--link-color);
}

.box .picture p a {
    color: var(--link-color);
}

.text {
    text-align: justify;
    font-size: 18px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn {
    float: right;
    max-width: fit-content;
    display: flex;
    overflow: hidden;
    padding: 5px 15px;
    background-color: #039be5;
    background-image: linear-gradient(to top right, #039be5, #29b6f6);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: none;
    transition: all .6s ease;
    text-decoration: none;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header {
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    min-height: fit-content;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(26, 26, 26, 0.5);
}

header h1 {
    margin-left: 5%;
    color: white;
}

header .menu {
    width: 40%;
    display: flex;
    justify-content: space-between;

}

header .menu a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

header .menu a::before {
    content: '';
    position: absolute;
    height: 2px;
    color: white;
    width: 100%;
}

header .menu-checkbox {
    margin-right: 10%;
    margin-left: 5%;
}

/* drawer menu */
.drawer-menu {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    padding: 120px 0;
    background: #262626;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: perspective(500px) rotateY(-90deg);
    transform: perspective(500px) rotateY(-90deg);
    opacity: 0;
}

.drawer-menu li {
    text-align: center;
    height: 100%;
}

.drawer-menu li a {
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: all .8s;
    transition: all .8s;
}

.drawer-menu li a:hover {
    color: #1a1e24;
    background: #fff;
    font-weight: bold;
}

.drawer-menu p {
    width: 100%;
    position: absolute;
    text-align: center;
    color: #6E6E6E;
    bottom: 0;
}

/* checkbox */
.check {
    display: none;
}

/* menu button - label tag */
.menu-btn {
    position: fixed;
    display: block;
    top: 22.5px;
    right: 2.5%;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 13;
}

.bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 1px;
    background: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.bar.middle {
    top: 15px;
    opacity: 1;
}

.bar.bottom {
    top: 30px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}

.menu-btn__text {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
    display: block;
    visibility: visible;
    opacity: 1;
}

.menu-btn:hover .bar {
    background: #999;
}

.menu-btn:hover .menu-btn__text {
    color: #999;
}

.close-menu {
    position: fixed;
    top: 0;
    right: 300px;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    cursor: url(http://theorthodoxworks.com/demo/images/cross.svg), auto;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
}

/* checked */
.check:checked~.drawer-menu {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    z-index: 12;
}

.check:checked~.contents {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    transform: translateX(-300px);
}

.check:checked~.menu-btn .menu-btn__text {
    visibility: hidden;
    opacity: 0;
}

.check:checked~.menu-btn .bar.top {
    width: 56px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check:checked~.menu-btn .bar.middle {
    opacity: 0;
}

.check:checked~.menu-btn .bar.bottom {
    width: 56px;
    top: 40px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.check:checked~.close-menu {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    background: rgba(0, 0, 0, .5);
    visibility: visible;
    opacity: 1;
    z-index: 13;
}

summary:before {
    content: '';
    border-width: .4rem;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 1.6rem;
    left: 1rem;
    transform: rotate(0);
    transform-origin: .2rem 50%;
    transition: .25s transform ease;
}

details[open]>summary:before {
    transform: rotate(90deg);
}

.zitat {
    height: 0;
}

footer {
    width: 100%;
    background-color: #262626;
    color: white;
    height: fit-content;
    bottom: 0;
    text-align: center;
}