@font-face {
    font-family: 'Tagesschrift-Regular';
    src: url('fonts/Tagesschrift-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'IMFellGreatPrimerSC';
    src: url('fonts/IMFellGreatPrimerSC-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'BonaNovaSC-Bold';
    src: url('fonts/BonaNovaSC-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    background-color: #fdf6e3;
    font-family: 'Tagesschrift-Regular', 'Kranky', 'Montserrat', sans-serif;
    color: #222;
    margin: 0;
    padding: 0;
}

main {
    padding: 2em;
    max-width: 920px;
    margin: auto;
    width: 100%;
}

header,
footer {
    background-color: #fdf6e3;
    color: #000;
    text-align: center;
    padding: 1em;
}

a {
    color: #000;
    text-decoration: none;
    font-size: 1.02em;
}

ul,
ul li {
    font-family: 'BonaNovaSC-Bold', serif;
    font-size: 1.02em;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.6em;


}



nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1em;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #000;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

.logo {
    text-align: center;
    margin-top: 20px;
}

.logo img {
    width: 21vw;
    max-width: 100%;
    height: auto;
    padding: 5px;
}

.artist-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}

.artist {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5em;
    background-color: #fdf6e3;
}

.artist-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.2em;
}

.artist:hover {
    background-color: #f0f0f0;
}


.artist-territory {
    margin-top: 0.3em;
}


h2 {
    border-bottom: 2px dashed #000;
    padding-bottom: 0.3em;
    margin-top: 2em;
}

h3 {
    text-align: center;
}

h4 {
    text-align: center;
    font-size: 1.1em;
    font-style: italic;
    font-weight: normal;
    margin-top: 0;
    padding-top: 0;
}

.intro {
    text-align: center;
    font-size: 1em;
}

section {
    margin-bottom: 4em;
}

@media (max-width: 700px) {
    main {
        padding: 1em;
        max-width: 85vw;
    }

    .artist-list {
        grid-template-columns: 1fr;
    }

    .logo img {
        width: 65vw;
    }

    h3 {
        font-size: 1.3em;
        text-align: center;
    }

}