* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}
html {
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}
body {
    perspective: 800px;
    background-color: #cccccc;
}
/* Start Navbar */
nav .container li {
    margin: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    transition: .4s background ease;
}
nav .container li a{
    color: red !important;
}
nav .container li:hover{
    background-color: black;
}
/* End Navbar */