/*#region main*/

h1 {
    font-family: 'Monomaniac One', sans-serif;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin: 76px 0 34px 0;
}

h2 {
    color: white;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 32px;
    width: fit-content;
    border-radius: 2rem;
    padding: 3px 13px;
    width: 128px;
    max-width: 100%;
    height: 30px;
    border-radius: 15px;
    background: var(--orangePeel);
    text-align: center;
}
/*#endregion main*/

/*#region content*/
aside {
    vertical-align: bottom; /* Add this to align the elements at the top */
    min-width: var(--asideWidth);
    background: var(--blueWood);
    height: 802px;
    padding: 112px 0 812px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.side-info {
    list-style-type: none;
}

.side-info > li {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin: 12px 0 12px 15px;
    font-family: 'Arimo', sans-serif;
}

.side-info > li:last-child {
    margin-bottom: 18px;
}

#big-margin {
    margin-bottom: 78px;
}

article {
    width: 100%;
    margin-right: var(--asideWidth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

article section:first-child {
    display: flex;
    flex-direction: column;
}

article svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#details p {
    margin-top: 50px;
    text-align: center;
    font-family: Inter;
    font-size: 19px;
    font-weight: 900;
    max-width: 917px;
    line-height: 28px;
}
/*#endregion content */




/* Mobilmenu mobil menu mobil-menu*/
@media only screen and (max-width: 1205px) {
    h1 {
        font-size: 20px;
        margin: 25.5px 0;
    }

    iframe {
        width: 280px;
        height: 157.405px;
    }

    #details p {
        font-size: 10px;
        line-height: 15px;
        margin: 20.5px 28px 13px 27px;
        height: auto;
    }

    aside {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: baseline;
        padding-top: 29px;
        padding-bottom: 0;
        height: 250px;
    }

    aside div:first-child .side-info {
        margin-left: 40px;
    }

    aside div:last-child {
        margin-right: 28px;
    }

    h2 {
        color: var(--lightOrange);
        font-size: 12px;
        margin-bottom: 10px;
        border-radius: unset;
        background: unset;
        text-align: center;
        width: fit-content;
    }

    .side-info >li {
        font-size: 10px;
        text-align: center;
        list-style-position: outside;
    }

    .side-info >li:before {
        height: 5px;
        width: 5px;
        background-color: white;
        border-radius: 50%;
        content: '';
        margin-right: 5px;
        display: inline-block;
    }

    
}