.head {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
    user-select: none;
}

.container {
    margin: 0px;
    padding: 0px;
}

ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.navbar li {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    background-color: #f1f1f1;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.navbar li:hover {
    transform: scale(1.1);
}

.navbar li a {
    text-decoration: none;
    text-transform:capitalize;
    color: black;
}

.navbar-leftside{
    text-align: left;
}

header {
    text-align: center;
    padding: 0px;
    margin: 0px;
    background-color: #f1f1f1;
    border-bottom: 1px solid black;
    position: sticky;
    top: 0;
    z-index: 1000;
}

footer{
    position: fixed;
    bottom: 0;
    cursor: default;
}

.footer{
    text-align: center;
    width: 100%;
    background-color: #f1f1f1;
    height: 30px;
    width: 200dvh;
}

.footer p{
    color: black;
    font-size: 20px;
    font-weight: bold;
    padding: 5px;
    margin: 0px;
}