/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

body {
    background-color: #0B0426;
    background-position: center right;
    background-size: cover;
    background-image: url('images/fond_tvgpt.jpg');
    color: #FFF;
    display: flex;
    flex-direction: column;
    font-family: 'Source Sans Pro', sans-serif;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

a {
    text-decoration: initial;
    color: inherit;
}

.btn {
    border-radius: 999px;
    border: 0; 
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 10px 20px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 5, 0.2);
    text-decoration: underline;
    transform: scale(105%);
}

.btn-full, .btn-outline:hover {
    background-color: #FFF;
    color: #0B0426;
}

.btn-outline {
    background-color: transparent;
    color: #FFF;
    border: solid 2px #FFF;
}

.btn-group {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

nav {
    align-items: center;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.3);
    bottom: 0;
    display: flex;
    font-size: 14px;
    height: 75px;
    justify-content: space-between;
    padding: 15px;
    position: fixed;
    text-align: right;
    width: 100%;
}

nav input {
    display: none;
}

nav #shows {
    display: flex;
}

nav #logoNav {
    align-items: center;
    aspect-ratio: 16/9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 90%;
    cursor: pointer;
    display: flex;
    font-size: 0;
    height: 50px;
    margin: 5px 0;
}

nav label {
    align-items: center;
    aspect-ratio: 16/9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75%;
    border-radius: 5px;
    border: solid 1px #FFF;
    cursor: pointer;
    display: flex;
    font-size: 0;
    height: 50px;
    margin: 5px;
    padding: 15px;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Bêta */
.beta::before {
    content: 'BÊTA';
    display: block;
    font-size: 10px;
    position: relative;
    padding: 1px 2px 2px 2px;
    font-weight: 600;
    border-radius: 3px;
    right: -50px;
    top: -20px;
    background-color: #dd0000;
}

/* New */
.new::before {
    content: 'NEW';
    display: block;
    font-size: 10px;
    position: relative;
    padding: 1px 2px 2px 2px;
    font-weight: 600;
    border-radius: 3px;
    right: -50px;
    top: -20px;
    background-color: #dd0000;
}

label:hover {
    background-color: rgba(11, 4, 38, 0.5);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 5, 0.2);
    transform: scale(105%);
}

#sectionHome {
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    padding-bottom: 75px;
    margin: auto;
}

#sectionHome img {
    max-width: 300px;
    margin: auto;
    margin-bottom: 30px;
}

#sectionHome p {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

#sectionShow {
    align-items: flex-start;
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    padding-bottom: 75px;
}

#sectionShow #logoShow {
    margin: 15px 0;
    max-height: 100px;
    max-width: 200px;
}

#sectionShow #sentence {
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0 30px 0;
    width: 60%;
}

@media screen and (max-width: 600px) {
    body {
        justify-content: center;
    }

    nav {
        justify-content: center;
        text-align: center;
    }

    nav #logoNav {
        display: none;
    }
    
    nav label {
        aspect-ratio: 1/1;
        background-size: 85%;
    }

    .beta::before,
    .new::before {
        right: -15px;
    }    
    
    #sectionShow {
        align-items: center;
        justify-content: space-between;
        text-align: center;
        width: 100%;
    }
    
    #sectionShow #sentence {
        font-size: 24px;
        font-weight: 700;
        margin: 15px 0 30px 0;
        width: 100%;
    }

    .btn-group {
        flex-direction: column;
    }

    #credit {
        display: none;
    }
}