@import "general.css";

/* Réinitialiser les marges et les paddings par défaut */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/*
.allContent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
*/


.sectionHeader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;

    min-height: 740px;
}

@media (max-width: 500px) {
    .sectionHeader {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100%;
        background-color: #ffffff;
    }
}

.header {
    /*margin-top: 260px;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 17px;
    width: 780px;
}

@media (max-width: 500px) {
    .header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 17px;
        width: 100%;
    }

}

@media (max-width: 500px) {
    .contentHeader {
        margin-left: 20px;
        margin-right: 10px;
    }

}

.MemojiAndMessage {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 20px;
}

.Memoji {
    margin-top: 5px;

    height: 65px;
    weight: 65px;
}

.principalHeader {
    color: #FF1500;
    font-family: 'Plush';
    font-weight: normal;
    font-size: 30px;
    margin: 0px;
}

.Bouton_Download {
    margin-top: 15px;
    background-color: #F6F6F6;


    width: 95px;
    height: 40px;

    font-family: 'Satoshi';
    font-size: 15px;
    color: #3A0A03;

    border-radius: 20px;
    border: none;
}

.Bouton_Download:hover {
    background-color: #3A0A03;
    color: #ffffff;
    cursor: pointer;

    transition: 300ms;

}

.Boutton_Secondaire {
    background-color: transparent;

    height: 40px;
    padding-left: 20px;
    padding-right: 20px;

    font-family: Satoshi;
    font-size: 15px;
    color: #3A0A03;

    border: none;
}

.Boutton_Secondaire:hover {
    color: #FF1500;
    cursor: pointer;

    transition: 300ms;
}

#Suite {
    position: absolute;
    bottom: 0;
    width: 100%;

    margin-bottom: 30px;
}


.sectionEnd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50vh;

    min-height: 400px;
}

.ContentBloc {
    width: 635px;
    height: 260px;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.ContentBloc h1 {
    color: #FF1500;
    font-family: 'Plush';
    font-weight: normal;
    font-size: 30px;
    margin: 0px;
}

.ContentBloc .Bouton_Download {
    margin-top: 0px;
}

@media (max-width: 500px) {
    .ContentBloc {
        width: 300px;
        height: 260px;
        border-radius: 15px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}