@keyframes fadeIn {
    0% {
        opacity: 0;
        left: -100;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@font-face {
    font-family: Bahnschrift;
    src: url(/font/BAHNSCHRIFT.TTF);
}

body {
    background-color: #292F36;
    margin: 0;
    font-family: Bahnschrift;
}

h1 {
    position: relative;
    font-size: 12em;
    font-weight: bold;
    margin: 0;
    line-height: 1em;
    color: #fff;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #fff;
    margin: 20px 0;
}

h3 {
    font-size: 1.5em;
    color: #fff;
    margin: 20px 0;
}

h4 {
    font-size: 1.2em;
    color: #fff;
    margin: 20px 0 10px 0;
}

p {
    word-spacing: 0.1em;
    line-height: 1.5em;
    color: #fff;
    margin: 0;
}

@media only screen and (max-width: 800px) {
    h1 {
        font-size: 10em;
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 8em;
    }
}

@media only screen and (max-width: 500px) {
    h1 {
        font-size: 6em;
    }
}

@media only screen and (max-width: 400px) {
    h1 {
        font-size: 4em;
    }
}

ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    position: relative;
    top: 50%;
    transform: translate(0%, -50%);
    list-style-type: none;
    height: 100%;
}

li {
    color: #FFF;
    justify-content: space-around;
    font-size: 1.5em;
    width: 100%;
    text-align: center;
    line-height: 60px;
    transition: all 0.5s;
    cursor: pointer;
    padding: 0 4%;
}

li {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

li:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    right: 0;
    transition: 0.5s;
}

li:hover {
    background-color: #292F36;
    padding-right: 6%;
    padding-left: 2%;
}

li:hover:after {
    opacity: 1;
    right: 10%;
}

.menu {
    height: 60px;
    background-color: #353D46;
    position: sticky;
    top: 0px;
}

@media only screen and (max-width: 600px) {
    li {
        font-size: 1.0em;
    }
}

#headlineExtra,

#welcomePage {
    position: relative;
    height: calc(100svh - 60px);
    width: 100%;
    background-image: linear-gradient(to bottom right, #FFBA49, #EF5B5B);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#centeredHeadline {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    padding: 5%;
}

#welcomeText {
    font-size: 2em;
    color: #FFF;
    text-align: center;
}

@media only screen and (min-width: 800px) {
    #welcomeText {
        padding: 0 10%;
    }
}

@media only screen and (max-width: 600px) {
    #welcomeText {
        font-size: 1.5em;
    }
}

.wrapper {
    border-radius: 20px;
    background-color: #353D46;
    padding: 10px 20px;
    margin: 30px auto;
    width: 1200px;

}

@media only screen and (max-width: 1300px) {
    .wrapper {
        width: inherit;
        margin: 30px 50px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper {
        width: inherit;
        margin: 20px 20px;
    }
}

#deleteWrapper {
    background-color: #292F36;
}

.inline-img {
    display: inline-flex;
    position: relative;
    margin: 0 0.125em;
    padding: 0;
    vertical-align: baseline;
    align-items: center;
    bottom: -2px;
}
.highlightTextRed{
    color: #EF5B5B;
}

.highlightTextOrange{
    color: #FF875B;
}

.highlightTextYellow{
    color: #FFBA49;
}
