@font-face {
    font-family: "Comic Relief";
    src: url("../media/ComicRelief-Regular.ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Comic Relief";
    src: url("../media/ComicRelief-Bold.ttf");
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Comic Relief", system-ui;
}

#heroBanner {
    width: 100%;
    height: auto;
}

p {
    font-size: 16px;
}

.navigationButton {
    display: block;
    position: relative;
    padding: 12px;
    padding-left: 40px;
    margin-top: 20px;
    border-radius: 30px;
    background-color: #6894e6;
    color: #ffffff;
    text-decoration: none;

    &::after {
        content: "";
        position: absolute;
        right: 20px;
    }

    &:hover {
        background-color: #2f569e;
    }
}

    .navigationIcon {
        height: 20px;
        width: auto;
        position: absolute;
        transform: translateY(-50%);
        top: 50%;
        left: 12px;
    }

.accordion {
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    background-color: #6894e6;
    color: #ffffff;
    text-decoration: none;
    position: relative;

    &::marker {
        content: "";
    }

    &::after {
        content: "▼";
        position: absolute;
        right: 20px;
    }

    &:hover {
        background-color: #2f569e;
    }

}

details {
    padding-bottom: 10px;

}
    .favourites {
        height: 20px;
        width: auto;
    }

.accordionContent {
    padding-top: 10px;
}

#indhold {
    padding: 20px;
}

.clubMap {
    max-width: 100%;
    height: auto;
}

.videos {
    max-width: 100%;
    height: auto;
}

.pictures {
    max-width: 100%;
    height: auto;
}

.back {
    display: block;
    padding: 10px;
    margin-top: 10px;
    border-radius: 20px;
    text-align: center;
    background-color: #d2edfa;
    color: #2f569e;
    text-decoration: none;
    border: 1px solid #2f569e;
    position: fixed;
    bottom: 20px;
    left: 20px;

    &:hover {
        background-color: #2f569e;
    }
}

body {
    background-color: #d2edfa;
}

h1 {
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 20px;
}

.leaflet-control-attribution {
    display: none;
}

#myFavourites {
    margin-top: 20px;
    
    span {
        font-weight: 700;
    }
}