@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* body{
    display: flex;
    align-items: center;
    justify-content: center;
} */
header{
    height: 100vh;
    width: 100%;
    background: url("img/background.png") no-repeat;
    background-position: center;
}
header nav{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    /* background: red; */
    z-index: 2000;
}
nav .navber{
    width: 90%;
    /* background: pink; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px auto 20px auto;
}
nav .navber .logo{
    height: 80px;
    width: 150px;
}
.navber .logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.navber .menu{
    display: flex;
}
.navber .menu li{
    list-style: none;
    margin: 0 10px;
}
.menu li a{
    font-size: 18px;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
}
.menu li a:hover{
    color: #000;
}
.navber .search-box{
    position: relative;
    height: 50px;
    width: 250px;
}
.search-box input[type="text"]{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    color: #2c3e50;
    font-size: 18px;
    outline: none;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    padding: 0 10px 0 40px;
}
.search-box a{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #2c3e50;
    padding: 0 5px 0 0;
    border-right: 2px solid #2c3e50;
}
.content{
    position: absolute;
    top: 33%;
    left: 7%;
}
.content .text{
    font-size: 27px;
    color: #2c3e50;
}
.content .name{
    font-size: 75px;
    color: #2c3e50;
}
.content .job{
    font-size: 40px;
    color: #2c3e50;
    display: flex;
}
.content .job .typing-text{
    color: #1de2d1;
    margin-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid #1de2d1;
    animation: typing 6s steps(15) infinite;
    /* background: blue; */
}
@keyframes typing {
    0%{
        width: 0ch;
    }
    50%{
        width: 17ch;
    }
    100%{
        width: 0ch;
    }
}
.content .buttons{
    margin: 20px 0 0 50px;
}
.content .buttons button{
    color: #fff;
    margin: 0 10px;
    padding: 10px 18px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 7px;
    outline: none;
    border: none;
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    transition: all 0.3s ease;
}
.content .buttons button:hover{
    transform: scale(0.98);
}
header .demo img{
    position: absolute;
    right: 80px;
    bottom: 0;
    height: 95%;
}
header .media-icons{
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
}
.media-icons a{
    margin-left: 8px 0;
    font-size: 20px;
    color: #2c3e50;
    font-weight: 500;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.media-icons a:hover{
    opacity: 1;
}