*{
    margin: 0;
    padding: 0;

}

.title{
color: black;
}


main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,white),url(Screenshot\ 2023-11-07\ 143836.png) ;
    background-position: center;
    background-size: cover;
    height: 100vh;
}
 
.navbar{
    width: 1200px;
    height: 75px;
    margin: auto;
}

.icon{
    width: 200px;
    float: left;
    height: 70px;
}

.logo{
    color: white(0, 81, 255);
    font-size: 35px;
    font-family: Arial;
    padding-left: 20px;
    float: left;
    padding-top: 10px;
}

.menu{
    width: 400px;
    float: left;
    height: 70px;
}

.menu ul li .hog a:hover{
color: red;
}

ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
ul li{
    list-style: none;
    margin-left: 62px;
    margin-top: 27px;
    font-size: 14px;
}

ul li a{
    text-decoration: none;
    color: white;
    font-family: Arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

ul li a:hover{
    color: rgb(139, 138, 138);
}

.search{
    width: 300px;
    float: left;
    margin-left: 270px;
}

.srch{
    font-family: 'Times New Roman';
    width: 200px;
    height: 40px;
    background: transparent;
    border: 1px solid rgb(254, 254, 254);
    margin-top: 13px;
    color: rgb(254, 252, 252);
    border-right: none;
    font-size: 16px;
    float: left;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
}

.btn{
    width: 100px;
    height: 40PX;
    background: rgb(251, 250, 250);
    border: 2px solid rgb(249, 249, 249);
    margin-top: 13px;
    color: rgb(8, 8, 8);
    font-size: 15px;
    border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.btn:focus{
    outline: none;
}

.srch:focus{
    outline: none;
}

.content{
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column; 
    align-items: center; 
    width: 60%; 
    background: rgba(0, 0, 0, 0.7); 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-left: 20%;
}


.content p {
    padding-left: 40px;
    padding-top: 25px;
    font-family: Arial;
    letter-spacing: 1.2px;
    line-height: 30px;
    text-align: left;
    margin: top 5px;
    margin-bottom: 5px;
}

.content .top{
    font-style: italic;
    
}

.content .log{
    color: pink;
}

.content h1{
    font-family: 'Times New Roman';
    font-size: 50px;
    padding-left: 20px;
    margin-top: 9%;
    letter-spacing: 2px;
}

footer{
    position: static;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: white;  
    background-color: black;
    font-size: 10px;
    }
    footer a{
        color: blue;
    }

    .social-icons {
        color: white;
        margin: 20px 0;
        text-align: center;
    }
    
    .social-icons a {
        font-size: 16px; /* Try 14px, 16px, or 18px depending on your design */
        margin: 0 8px;
        color: white;
        transition: color 0.3s ease;
    }
    
    .social-icons a:hover {
        color: #807d7d; /* match site accent color */
    }