@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

html{
    color: white;
    background-color: black;
    font-family: 'Montserrat', sans-serif;
}

.navbar {
    height: 12%;
    display: flex;
    align-items: center;
    width: 100%;
}

nav {
    flex: 1;
    height: 130px;
    line-height: 75px;
    margin: 0;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 60px;
}


nav ul li  a:hover {
    color: orange;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}


.grid-container {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 1.5fr 0.5fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0px 0px;
    grid-template-areas:
    "abonnement stream stream chat"
    "abonnement stream stream chat"
    "abonnement stream stream chat";
}

.abonnement {
    grid-area: abonnement;
}

.stream {
    grid-area: stream;
}

.stream video{
    width: 100%;
}

.chat {
    grid-area: chat;
    margin-left: 10px;
}

.formulaire{
    display: flex;
    flex-direction: column;
}

.titre-chat{
    border-bottom: white solid 0.1px;
    text-align: center;
    padding-bottom: 20px;
}

.message{
    resize: none;
    background-color: black;
    color: white;
    border-color: white;
}

.message::placeholder{
    color: white;
}

.bouton{
    background-color: black;
    color: white;
    border-color: white;
}
