::selection {
    background-color: black;
}

*:focus {
    outline: none;
}

body {
    margin: 10px;
}

p,
h2,
a {
    color: #ff00cc;
    margin-top: 0;
    margin-bottom: 16px;
    font-family: monospace;
    font-size: 16px;
    text-decoration: none;
}

h2 {
    font-weight: normal;
}

h2::before {
    content: "⋆ ˚｡⋆୨୧˚";
}

h2::after {
    content: "˚୨୧⋆｡˚ ⋆";
}

#logo {
    width: 50vw;
    max-width: 400px;
    min-width: 300px;
    margin-top: 64px;
}

.font-teaser {
    width: 100%;
    margin-top: 32px;
}

.font-teaser .head {
    display: flex;
    flex-direction: row;
}

.font-teaser img {
    margin-top: -8px;
}

.button {
    cursor: pointer;
    margin-left: 16px;
}

.button::before {
    content: "[";
}

.button::after {
    content: "]";
}

.button::before,
.button::after {
    color: transparent;
}

.button:hover::before,
.button:hover::after,
.button.active::before,
.button.active::after {
    color: #ff00cc;
}

.info {
    margin-left: 16px;
}

.info::before {
    content: "[";
}

.info::after {
    content: "]";
}

#infoMobile {
    display: none;
}

@media screen and (max-width: 700px) {
    p,
    .font-teaser {
        display: none;
    }

    #infoMobile,
    #logo {
        display: block;
    }
}