/* ajouter une font de mon dossier */
@font-face {
    font-family: 'Kindred Youth';
    src: url('Kindred_Youth.otf') format('opentype');
}

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #6e2b69;
}

.slide{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    .logo{
        width: 150px;
        height: auto;
        position: absolute;
        top:0px;
        left: 0px;
    }
}
.container{
    color: #6e2b69;
    h1{
        font-family: 'Kindred Youth', sans-serif;
        font-size: 50px;
    }
    display:flex;
    flex-direction: column;
    align-items: center;
    background-color:rgb(245, 166, 255);
    border-radius: 10px;
    border: 5px solid #ffffff;
    padding: 20px;
    gap:10px;
}
.projet{
    display:flex;
    a{
        text-decoration: none;
        color: #6e2b69;
    }
}