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

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

*{
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 90vh;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: rgb(243, 243, 243);
}

.navbar{
    display: flex;
    top: 0;
    left: 0;
    position: fixed;
    width: 15%;
    height: 100%;
    background-color: white;
}

ul{
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 0px 15px;
}

ul p{
    text-align: center;
    color: gray;
}

li{
    display: flex;
    width: 100%;
    margin: 10px 0px;
    list-style: none;
}

.active{
    background-color: aquamarine;
}

.navbar a{
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    padding: 12px 24px;
    width: 100%;
    color: black;
    cursor: pointer;
    border: none;
    transition: all .25s;
}

.navbar a:hover{
    background-color: aquamarine;
}

.title{
    border-radius: 10px;
    width: 100%;
    background-color: white;
    filter: drop-shadow(2px 0 2px gray);
}

.title h1{
    font-size: 20px;
    margin-left: 30px;
}

.container{
    display: flex;
    flex-direction: column;
    width: 82%;
    margin-left: 14%;
    height: 100%;
    margin-top: 15px;
}