*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
html, body{
    width: 100%;
    height: 100%;
}
body{
    background-color: rgb(33, 33, 34);
    padding: 20px;
}
.container{
    /* background-color: grey; */
    height: 90%;
    margin: 20px auto;
    max-width: 750px;
}
header{
    width: 100%;
    /* background-color: red; */
    text-align: center;
}
header img{
    margin: auto;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    border: white 2px solid;
}
header h1{
    color: white;
    margin: 30px 0px 20px 0px;
}

main{
    width: 100%;
}
main a{
    margin: 10px 0px;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    color: rgb(33, 33, 34);
    font-size: 1.4em;
    background-color: white;
  transition: .3s;
}
main a:hover{
  transform: scale(1.1);
}
.reseaux{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.reseaux a svg{
    fill: white;
    height: 30px;
    width: 30px;
}
main h2{
    margin-top: 50px;
    color: white;
}