@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap');
*{
    padding:0%;
    box-sizing: border-box;
    text-transform: capitalize;
}
body{
    background: rgb(239, 235, 235);
    color:white;
    height: 100vh;
    margin:0;
    font-family: "Parkinsans", sans-serif;
}
.header{
    background: black;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content:flex-end;
    padding-right: 50px;
    gap: 40px;
    padding-top: 15px;
    margin-bottom: 100px;
}
/* .header .vdo{
    display: flex;
    justify-content:flex-end;
    padding-top: 15px;
    padding-right: 25px;
}
.header .call{
    display: flex;
    justify-content:flex-end;
    padding-right: 70px;
    margin-bottom: 90px;
} */
.sidebar{
    overflow: hidden;
    position: fixed;
    top: 0%;
    left: 0%;
    bottom: 0%;
    display: flex;
    flex-direction: column;
    gap: 4%;
    width: 100px;
    background: goldenrod;
}
.sidebar nav{
    padding: 0 8px;
}
.sidebar a{
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
    border-radius: 6px;
    font-size: 25px;
    padding: 0 32px;
    cursor: pointer;
    opacity: 0.75;
}
.sidebar a:hover{
    background-color: rgb(3, 3, 3);
    opacity: 1;
}
.footer{
    background: black;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content:flex-end;
    padding-right: 50px;
    gap: 40px;
    padding-top: 15px;
}
.img{
    text-align: center;
    margin-top: 300px;
    margin-bottom: 250px;
}
