@font-face {
    font-family: "Adam";
    src: url("/font/adam/adam-light.eot");
    src: url('/font/adam/adam-light.woff2') format('woff2'),
        url('/font/adam/adam-light.ttf') format('truetype');
}

@font-face {
    font-family: "Quicksand";
    src: url('/font/quicksand/Quicksand-Light.ttf') format('truetype');
}

html{
    width: 100%;
    height: 100%;
    background-color: #1c1c1c;
}

body{
    text-align: center;
}

h1, h2{
    color: #66FF99;
    font-family: "Adam";
}

h2{
    margin-top: 2rem;
}

p{
    font-family: "Quicksand";
    color: white;
}

.logo{
    width: 200px;
    box-shadow: 0px 0px 27px #66ff99;
    margin: 1rem;
}

/* Iframe */
iframe{
    max-width: 800px;
}

/* Liste des lien d'écoute*/
.podcast-list{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    padding-left: 0;
    gap: 1rem;
}

.socialmedia-list{
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 250px;
    margin: 0 auto;
    padding-left: 0;
}

.podcast-list__link, .socialmedia-list__item{
    width: 32px;
}

.socialmedia-list__svg {
    fill: #EEE32C;
}

.spotify{
    fill: #00DC4D;
}

@media screen and (max-width: 1920px) {
    .socialmedia-list{
        padding-bottom: 10rem;
    } 
}