<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    margin: 0; padding:0; box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
.header .logo h1,
.Projects,
.login h1
{
    padding: 0 4% 0 5%;
}

.Projects h1,
.accessories h1,
.contact h1{
    color: rgb(168, 155, 155);
    font-size: 50px;
}

.header {
    width: 100%;
    background: #8e9697;
    background: linear-gradient(57deg, #9ca1a1 , #ec3939); 
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
    flex-wrap: wrap;
}
nav{
    width: 100%; 
    /*background-color:  red;*/
    display: flex; 
    color: white;
}

.logo{
    width: 50%;
    height: 100px;
}

.logo h1 a{
    line-height: 100px;
    padding-left: 50px;
    font-size: 30px;
    letter-spacing: 2px;
    cursor: pointer;
}

.menu{
    width: 50%; 
    height: 100px;
    
}

.menu ul{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items:  center;
    flex-wrap: wrap;
}

.menu ul li{
    list-style: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 2px;
}
.menu ul li a,
.rightside button a,
.header .logo h1 a {
    color: white;
    text-decoration: none;
}
.fa-bell{
    font-size: 17px;
}
/************about container****************/
.about-content{
    height: 200px;
    width: 800px;
    color: whitesmoke;
    justify-content: center;
    text-align: center;
    align-items: center;
    display:block;
    background-color: aquamarine;
    margin: auto;
    margin-top: 150px;
}
.about-content h1,
.about-content p{
    color: black;
 
}
.about-content h1{
    font-size: 40px;
}
.about-content p{
    font-size:18px;
    letter-spacing: 2px;
    line-height: 25px;
}

/************footer css***************/
.fab{
    font-size:30px;
    letter-spacing: 20px;
}
.footer{
    bottom:-10px;
}
.ft{
    line-height: 15px;
}
.ft p{
    margin-top: 10px;
}
.footer,
.footer-content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#social{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.5s;
}
/**********social hover color***************/
.fa-linkedin:hover{
    color:#0e76a8;
}
.fa-github:hover{
    color: #4078c0;
}
.fa-youtube:hover{
    color: #FF0000;
}
.fa-facebook:hover{
    color: #4267B2;
}
.fa-instagram:hover{
    color: #3f729b;
}

footer p{
    text-align: center;
    font-size: 19px;
    letter-spacing: 1px;
}
.far{
    font-size: 19px;
}
/**********footer content***********/
.footer-content{
    letter-spacing: 1px;
    font-size:16px;
}
.footer-content:hover{
    transition: transform 0.5s;
}
.footer-content a,
.footer a{
    text-decoration: none;
    color: black;
}
.ft hr{
    border: 1.5px solid black;
}</pre></body></html>