@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body{
    background-color: rgb(10, 5, 41);/*Couleur de fond*/
    color: white;
    font-family: "Lato", serif;
}

.logo{
    width: 200px;
    height: auto;
}
/*style des liens*/
a{
    color: white;
    text-decoration: none;
}

a:hover{
    font-size: 17px; /*taille du texte*/
    border-bottom: 4px solid #913040;
}

header{
    display: flex;
    justify-content: space-between;
    justify-content: flex-end;
}

#hero{
    background: url("https://preview.redd.it/how-would-akaza-blood-demon-art-work-as-a-hatsu-v0-zpt0sbvg42de1.jpeg?auto=webp&s=c326a5dfaba1b24a4ce51ce9262798eb756bf99d");
    background-size: cover;
    background-repeat: no-repeat;
    height: 110vh;
    padding: 50px;
}
h1{
    font-size: 96px;
    margin: 0;
    text-align: center;
}

nav li{
    display: inline-block;
    padding-left: 10px;
}

#hero p {
    text-align: center;
}

#bio{
    display: flex;
    gap: 60px;
}

button{
    background-color: rgb(10, 5, 41);
    color: white;
    padding:20px;
    display: block;
}