/* Import des polices */
@import url('https://fonts.googleapis.com/css2?family=Lustria&display=swap');

/* Initialisation du document */
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
}


/* Style de base du document */
body {
    margin: 0;
    padding: 0;
    background-image: url('../pictures/AH.png');
    background-color: #AD9D33;
    background-repeat: no-repeat;
    background-size: cover;
    width: auto;
    height: auto;
    color: #FFFFFF;    
    font-family: 'Lustria', serif;
}

.boutons{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.projectsbtn{
    font-family: 'Lustria', serif;
    padding: 10px 20px;
    font-size: 16px;
    border : none;
    border-radius: 15px;
    width: auto;
    transition: all 0.3s ease;
    background-color: #AD9D33;
    color: #fff;
    border: 1.5px solid #ffffff;
}

.projectsbtn:hover {
    cursor: pointer;
    color: #AD9D33; 
    background-color: #FFFFFF;  
}


.aboutmebtn{
    font-family: 'Lustria', serif;
    padding: 10px 20px;
    font-size: 16px;
    border : none;
    border-radius: 15px;
    width: auto;
    transition: all 0.3s ease;
    background-color: #AD9D33;
    color: #fff;
    border: 1.5px solid #ffffff;
}

.aboutmebtn:hover {
    cursor: pointer;
    color: #AD9D33; 
    background-color: #FFFFFF;  
}

.contactinfosbtn{
    font-family: 'Lustria', serif;
    padding: 10px 20px;
    font-size: 16px;
    border : none;
    border-radius: 15px;
    width: auto;
    transition: all 0.3s ease;
    background-color: #AD9D33;
    color: #fff;
    border: 1.5px solid #ffffff;
}

.contactinfosbtn:hover {
    cursor: pointer;
    color: #AD9D33; 
    background-color: #FFFFFF;  
}
