.head{
    background-color: rgb(197, 122, 24);
}
body{
    margin: 0;
    padding: 0;
    top: 0;
    bottom: 0;
    background-color: black;
}
.navbar {
    display: flex;
    justify-content: space-between; /* Space between logo and menu */
    align-items: center;
    padding: 10px 50px; /* Adjust spacing */
}

.logo {
    font-size: 30px;
    font-weight: bold;
}
.logo a{
    text-decoration: none;
    color:rgb(54, 2, 103)
}

.navbar ul {
    display: flex;
    list-style: none;
    margin: 20px 0px;
    padding-left: 0;
}

.navbar ul li {
    font-weight: bold;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-left: 20px; /* Adds space between menu items */
}

.navbar ul li a {
    text-decoration: none;
    color: beige;
    padding: 10px;
    transition: all .5s ease;
}
.navbar ul li a:hover{
    color:rgb(54, 31, 2)
}
.image img{
    border-radius: 80%;
    width: 20vw;
    height: auto;
}
h3 {
    text-align: center;
    color: red;
    font-size: 40px;
}
h3 span{
    font-size:60px;
    color: rgb(1, 101, 96);
}
#home{
    color:rgb(233, 233, 233);
    text-align:center;
    display:flex;
    flex-direction: column;
    height:840px;
    align-items:left;
}