@font-face {
    font-family: "Buft";
    src: url("../Assets/Melted_Monster/Melted\ Monster.ttf");
}

@font-face {
    font-family: "Poule";
    src: url("../Assets/Holiday_Cheer/Holiday\ Cheer.otf");
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

h1,
h2 {
    font-family: "Buft";
    color: red;

}

header {

    height: 30vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 7vh;
    background-color: black;
    background-image: url("../Assets/Logo/Logo_Umbrella.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    border-radius: 155.5px;
    z-index: 10;

}

nav>a {
    text-decoration: none;
    display: block;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90vw;
    border: red solid;
    background-color: red;
}

body {
    background-color: red;

}

.Bouton {
    color: white;
    font-family: "poule";
}

.Bouton:hover {
    background-color: white;
    color: red;
}

.container {
    display: flex;
    font-family: "poule";
}

.sidebar {
    flex: 1;
    margin-top: 3vw;
    margin-left: 4.5vw;
}

.sidebar a {
    text-decoration: none;
    color: white;
    font-size: 25px;
}

.sidebar a:hover {
    color: yellowgreen;
}

li {
    padding-top: 5px;
    list-style: none;
}

.content {
    flex: 3;
    margin-top: 3vw;
    background-color: black;
    color: white;
}

.margin {
    padding-top: 1vw;
    padding-right: 2vw;
}

table {
    border-collapse: collapse;
}

table td {
    border: 3px solid white;
}