@font-face {
    font-family: 'Creato Display';
    src: url(./fonts/CreatoDisplay-Bold.otf);
}

@font-face {
    font-family: 'Creato Display Light';
    src: url(./fonts/CreatoDisplay-Light.otf);
}

@font-face {
    font-family: 'Creato Display Bold';
    src: url(./fonts/CreatoDisplay-Bold.otf);
}

::-webkit-scrollbar {
    display: none;
}

body {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.header {
    width: 100vw;
    height: 10vh;
    background-color: #0D052D;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_img {
    width: 20vw;
    margin-left: 50px;
}

.tirage_button {
    width: 17vw;
    height: 6vh;
    background: linear-gradient(90deg, #2AB7D6 0%, #2D57EB 49.48%, #D82BB2 100%);
    border-radius: 10px;
    border: none;
    font-family: 'Creato Display';
    font-size: 1vw;
    color: white;
    margin-right: 50px;
    cursor: pointer;
}

.content {
    width: 100vw;
    height: 90vh;
    overflow-x: hidden;
    overflow-y: scroll;
}

.ajout_box {
    width: 100vw;
    height: 30vh;
    background: linear-gradient(90deg, #2AB7D6 0%, #2D57EB 49.48%, #D82BB2 100%);
    display: none;
    flex-direction: column;
}

.ajout_titre {
    width: 100vw;
    height: 20vh;
    font-family: 'Creato Display Light';
    font-size: 2vw;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ajout_inputs {
    width: 100vw;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.input_nom {
    width: 17vw;
    height: 6vh;
    border-radius: 10px;
    border: none;
    font-family: 'Creato Display';
    font-size: 1vw;
    color: black;
    font-family: 'Creato Display';
    font-size: 1vw;
    text-align: center;
}

.input_plateforme {
    width: 17vw;
    height: 6vh;
    border-radius: 10px;
    border: none;
    font-family: 'Creato Display';
    font-size: 1vw;
    color: black;
    font-family: 'Creato Display';
    font-size: 1vw;
    text-align: center;
}

input[type="file"]::file-selector-button {
    width: 6vw;
    height: 16vh;
    border-radius: 10px;
    border: none;
    font-family: 'Creato Display';
    font-size: 0.5vw;
    color: white;
    font-family: 'Creato Display';
    text-align: center;
    cursor: pointer;
    background: none;
    border: 2px dashed white;
}

input[type="file"]::file-selector-button:hover {
    width: 6vw;
    height: 16vh;
    border-radius: 10px;
    border: none;
    font-family: 'Creato Display';
    font-size: 0.5vw;
    color: white;
    font-family: 'Creato Display';
    text-align: center;
    cursor: pointer;
    background: none;
    border: 2px solid white;
}

input[type='file'] {
    color: transparent;
}

.submit_button {
    width: 10vw;
    height: 6vh;
    border-radius: 10px;
    border: none;
    font-family: 'Creato Display';
    font-size: 1vw;
    color: white;
    font-family: 'Creato Display';
    font-size: 1vw;
    text-align: center;
    background-color: #0DA600;
    cursor: pointer;
}

.choix-tirage {
    position: absolute;
    width: 56vw;
    height: 62vh;
    background-color: #FFFFFF;
    border-radius: 0.5vw;
    display: flex;
    margin-top: 19vh;
    margin-left: 22vw;
    flex-wrap: wrap;
    justify-content: space-around;
    display: none;
    z-index: 1000;
}

.choix-tirage-titre {
    width: 56vw;
    height: 10vh;
    font-family: 'Creato Display Bold';
    font-size: 1.5vw;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tirage-box {
    width: 19vw;
    height: 20vh;
    background: linear-gradient(90deg, #2AB7D6 0%, #2D57EB 49.48%, #D82BB2 100%);
    border-radius: 0.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Creato Display';
    font-size: 1.5vw;
    color: #FFFFFF;
}

.tirage-box:hover {
    width: 19vw;
    height: 20vh;
    background: linear-gradient(90deg, #2AB7D6 0%, #2D57EB 49.48%, #D82BB2 100%);
    border-radius: 0.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Creato Display';
    font-size: 1.5vw;
    color: #FFFFFF;
    opacity: 0.75;
    cursor: pointer;
}

.game_card_box {
    width: 15vw;
    height: 48vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 4vw;
    margin-right: 4vw;
    margin-top: 2vw;
    margin-bottom: 2vw;
}

.game_card {
    width: 15vw;
    height: 43vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #D9D9D9;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.game_card:hover {
    width: 15vw;
    height: 43vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #D9D9D9;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1.1);
}

.game_card_text {
    font-size: 1.25vw;
    font-family: 'Creato Display';
    color: white;
}

.steam_box {
    width: 100vw;
    background: linear-gradient(180deg, #0D052D 0%, #1B2AB3 100%);
}

.steam_titre_box {
    width: 100vw;
    height: 15vh;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.steam_titre_box img {
    margin-left: 20px;
}

.steam_titre {
    font-family: 'Creato Display Light';
    font-size: 2vw;
    color: white;
}

.steam_content {
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.xbox_box {
    width: 100vw;
    background: linear-gradient(180deg, #052D07 0%, #1BB32A 100%);
}

.xbox_titre_box {
    width: 100vw;
    height: 15vh;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.xbox_titre_box img {
    margin-left: 20px;
}

.xbox_titre {
    font-family: 'Creato Display Light';
    font-size: 2vw;
    color: white;
}

.xbox_content {
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.ubisoft_box {
    width: 100vw;
    background: linear-gradient(180deg, #120156 0%, #650856 28.13%, #4F6D0F 73.96%, #136112 100%);
}

.ubisoft_titre_box {
    width: 100vw;
    height: 15vh;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.ubisoft_titre_box img {
    margin-left: 20px;
}

.ubisoft_titre {
    font-family: 'Creato Display Light';
    font-size: 2vw;
    color: white;
}

.ubisoft_content {
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.epic_box {
    width: 100vw;
    background: #1E1E1F;
}

.epic_titre_box {
    width: 100vw;
    height: 15vh;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.epic_titre_box img {
    margin-left: 20px;
}

.epic_titre {
    font-family: 'Creato Display Light';
    font-size: 2vw;
    color: white;
}

.epic_content {
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.ea_box {
    width: 100vw;
    background: linear-gradient(180deg, #893100 0%, #D75B02 56.25%, #EBA900 100%);
}

.ea_titre_box {
    width: 100vw;
    height: 15vh;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.ea_titre_box img {
    margin-left: 20px;
}

.ea_titre {
    font-family: 'Creato Display Light';
    font-size: 2vw;
    color: white;
}

.ea_content {
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
