* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background: #000;
    color: #fff;
}

#header {
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
}

.logo {
    position: relative;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 2px;
    color: orangered;
    
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}

.navbar a {
   font-size: 18px;
    margin: 25px;
    margin-right: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: orange;
}

/* this is the styling for the main content  */
#home {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    position: relative;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
}

.color1 {
    color: orange;
}

.home-content h3 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.home-content p {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.3px;
    margin: 20px 0 40px;
}

.home-content .home-btn {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
}

.home-btn a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 155px;
    height: 100%;
    background: orange;
    border: 2px solid orange;
    border-radius: 5px;
    font-size: 19px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.home-btn:hover {
    color: #000;
}

.home-btn a:nth-child(2) {
    background: transparent;
    color: orangered;
    border: 2px solid orangered;
}

.home-btn a:nth-child(2):hover {
    color: #000;
}

.home-btn a:nth-child(2)::before {
    background: orangered;
}

.home-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #000;
    z-index: -1;
    transition: .5s;
}

.home-btn a:hover::before {
    width: 100%;
}

/* this is the styling for the social icons */

.social-icons {
    position: absolute;
    display: flex;
    justify-content: space-between;
    bottom: 40px;
    width: 180px;
}

.social-icons a {
    position: relative;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid orangered;
    border-radius: 50%;
    font-size: 25px;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: orangered;
    z-index: -1;
    transition: .5s;
}

.social-icons a:hover::before {
    width: 100%;
}

img {
    border-width: 0;
    box-sizing: border-box;
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
   }
   img{width:200 ;
    height: 150;}
        img{border-radius: 90px;}
    img{
     border-radius: 50%;
     float: left;
    }


/* this is for the animation effects  */
@keyframes showRight {
    100% {
        width: 0;
    }
}


