*
{
    margin: 0;
    padding: 0;
}

body
{
    background-color: #131316;
    background: url(../../images/Celeste_Background.png) no-repeat center center fixed;
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
    
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: unset;
    /* size: 100%; */
}

.bg
{
    position: absolute;
    top:0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
}

a
{
    text-decoration: none;
    color: #fff;
}

a:visited
{
    text-decoration: none;
    color: #fff;
}

a:link
{
    text-decoration: none;
    color: #fff;
}

a:hover
{
    text-decoration: none;
    color: #fff;
}

a:active
{
    text-decoration: none;
    color: #fff;
}



/* CLASS */

.navigatorContainer
{
    height: 5vw;
    width: 100%;

    text-align: center;
    display: grid;
    place-items: center; 
    align-content: center;
}

.navigatorContainer nav
{
    height: 4vw;
    width: 50%;
    border-radius: 10px;
    background-color: #131316;

    font-family: 'Alfa Slab One', serif;
    font-size: 1vw;

    display: grid;
    text-align: center;
    place-items: center; 
    align-content: center;
}

.navigatorContainer ul
{
    width: 100%;
    height: 3vw;
    /* height: 100%; */
    display: flex;
    text-align: center;
    place-items: center; 
    align-content: center;
}

.navigatorContainer li
{
    /* display: inline; */
    width: 33%;
    height: 3vw;
    list-style: none;
    display: grid;
    text-align: center;
    place-items: center; 
    align-content: center;
}

.navigatorContainer li:hover
{
    color: #e29ae3;
}

.titleContainer
{
    /* height: 300px; */
    margin-top: 5%;
    margin-bottom: 5%;    
    width: 100%;

    display: grid;
    place-items: center; 
    align-content: center;
}

.titleBlock
{
    width: 80%;
    height: 180px;

    display: grid;
    place-items: center;
    align-content: center;
    justify-content: space-evenly;

    background-image: url(../../images/Celeste_Logo.png);
    background-size: contain;
}

.wrapper
{
    /* background-color: #37373b; */
    margin-bottom: 5%;
    display: grid;
    place-items: center;
    /* padding-top: 2%;
    padding-bottom: 2%; */
}

.presentContainer
{
    height: 57vw;
    width: 100%;

    text-align: center;
    display: grid;
    place-items: center; 
    align-content: center;
}

.presentBlock
{
    height: 56vw;
    width: 50%;
    border-radius: 10px;
    background-color: #131316;

    font-family: 'Alfa Slab One', serif;
    font-size: 1vw;

    text-align: left;
    display: grid;
    place-items: center; 
    align-content: center;
}

.presentBlock p
{
    width: 90%;
}

.playerContainer
{
    height: 5vw;
    width: 100%;

    display: grid;
    place-items: center; 
    align-content: center;
}

.playerBlock
{
    /* display: grid; */
    width: 50%;
    /* height: 85px; */
    height: 4vw;

    /* font-size: 50px; */
    font-size: 2vw;
    /* line-height: 85px; */
    line-height: 4vw;
    font-family: 'Alfa Slab One',serif;

    background-color: #131316;
    /* background-color: #37373b; */
    border-radius: 10px;

    display: flex;
    place-items: center;
    align-content: center;
    justify-content: space-evenly;
}

.playerBlock:hover
{
    transform: scale(1.05);
    transition: 1s;
    /* animation: pulse 1s infinite; */
}

.playerName
{
    color: #e29ae3;
}

.twitchContainer
{
    margin-top: 1%;
    width: 90%;
    height: 15vw;
    display: flex;
    
    justify-content: space-between;
}

.twitchContainer iframe
{
    height: 13vw;
    /* height: 300px; */
    /* width: 400px; */
}

/* Attribut */

#titleImg
{
    /* height: 180px; */
    width: 70%;
}

/* KEYFRAMES */

@keyframes pulse 
{
    0%, 100% {scale: 1};
    50% {scale: 1.05};    
}

/* MEDIA */

@media screen and (max-width: 1280px)
{
    .navigatorContainer nav
    {
        width: 90%;
    }
    .presentBlock
    {
        width: 90%;
    }

    .playerBlock
    {
        width: 90%;
    }
}