@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900');


header {
    width: 100%;
    height: 80px;
    /* background-color: brown; */
    border-bottom: 1px solid rgb(71, 70, 70);
    /* background-color: white; */
    background-color: rgba(15,19,20,255);
}

header nav {
    height: 60px;
    width: 95%;
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content:space-evenly;
    /* background-color: white; */
    background-color: rgba(15,19,20,255);
}

header nav ul{
    display: flex;
    list-style: none;
    width: 300px;
    
}
header nav ul li{
    width: 100px;
    height: 40px;
    font-size: large;
    font-weight:500;
    background-color: rgba(15,19,20,255);
    color: white;
    font-family: 'Poppins', sans-serif;
}
header nav ul li:hover{
    transform: scale(1.08,1.08);
}
.buttons {
    /* background-color: white; */
    width: 16%;
    /* align-self:flex-end; */
    /* background-color: white; */
    background-color: rgba(15,19,20,255)
}
.navBarButtons {
    margin: 4px 4px;
    height: 40px;
    width: 44%;
    border-radius: 5px;
    /* background-color: rgb(95, 17, 212); */
    background-color: #3D3A3A;
    border: none;
    color: white;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.navBarButtons:hover{
    transform: scale(1.05,1.05);
}

.log-sign-label{
    width: 50%;
}

.link {
    width: 18%;
    height: 40px;
    background-color: rgba(15,19,20,255)
}

.link a{
    /* width: 100%; */
    height: 40px;
    text-decoration: none;
    font-size:x-large;
    color: rgb(95, 17, 212);
    font-weight: bolder;
    font-family: 'Roboto', sans-serif;
}