/* Header */
header
{
    height: 70px;
    width: 100%;
    background: var(--black2);
    color: var(--white1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title
{
    margin-left: 10%;
}
.title h2
{
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 2em;
}
.list
{
    margin-right: 10%;
}
.list ul
{
    display: flex;
    list-style: none;
}
.list ul li
{
    margin: 0 20px;
    font-size: 1.2em;
    background: var(--blue1);
    padding: 5px 10px;
    border-radius: 10px;
}
.list ul a
{
    text-decoration: none;
    color: var(--white1);
}
.list ul li:nth-child(2)
{
    border-radius: none;
    background: none;
    font-size: 1.5em;
}
.list ul li:nth-child(2) .fa-solid
{
    cursor: pointer;
}
.list ul li:nth-child(2) .fa-moon
{
    display: none;
}
.light .list ul li:nth-child(2) .fa-sun
{
    display: none;
}
.light .list ul li:nth-child(2) .fa-moon
{
    display: block;
}

/* Hauptcontent */
/* Head */
.head
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30vh;
    color: var(--white1);
}
.head p:nth-child(1)
{
    font-size: 5em;
    padding: 0 20%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}
.head p:nth-child(1) span
{
    color: var(--blue1);
    font-family: 'Inter', sans-serif;
}
.head p:nth-child(2)
{
    font-size: 1.2em;
    padding: 0 50px;
    text-align: center;
    margin-top: 20px;
    color: #8a8a8a;
}
.head a
{
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid var(--white1);
    border-radius: 10px;
    color: var(--white1);
    text-decoration: none;
}
/* Weitere Infos */
.infos
{
    margin-top: 150px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--white1);
}
.infos div
{
    padding: 10px 35%;
    margin-bottom: 50px;
    opacity: 0;
    transition: 0.5s;
    transform: translateY(30px);
}
.infos div h2
{
    font-size: 2em;
    margin-bottom: 10px;
}
@media(max-width: 820px)
{
    .infos div
    {
        padding: 10px 20%;
    }
    .head p:nth-child(1)
    {
        padding: 0 10%;
    }
}
