@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}
/* navbar and backround section */
.navbar{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2rem;
    background: rgba(0, 0, 0, 0.6) !important;
    padding: 20px 0;
}

.offset:before{
    display: block;
    content: "";
    height: 6rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    padding: 20px;

}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover{
    color: #1ebba3;
}
.heading-content{
    position: absolute;
    top: 35%;
    width: 100%;
    max-width: 100%;
}

.heading-content h5 {
    font-size: 3em;
    font-weight: 300;
    color: #fff;
    font-family: monospace;
}

.heading-content h1 {
    font-size: 4em;
    font-weight: bolder;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.heading-content p {
    font-size: 1em;
    font-weight: lighter;
    text-transform: uppercase;
    color: #ccc;
    font-family: 'Poppins', sans-serif;
    word-spacing: 5px;
    letter-spacing: 2px;
}

/* About me section */
#about .btn{
    border: 2px solid transparent;
    width: 40%;
    padding: 15px 22px;
    background: #000;
    border-radius: 5px;
    margin-top: 10px;
}

#about .btn a{
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
}

#about .btn:hover{
    border: 2px solid #1ebba3;
    cursor: pointer;
}

.contact ul {
    max-width: 640px;
    margin: 2em auto;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
}
.contact ul li {
    list-style: none;
    align-self: flex-end;
}

.contact ul li a {
    text-decoration: none;
    color: #c1c6ce;
}

svg {
    width: 40%;
}

footer {
    color: var(--color-1);
    text-align: center;
    grid-area: sidebar;
    background-color: #485461;
background-image: var(--liner-color);
justify-content: center;
}

/* media section  */

@media screen and (max-width: 767px) {
    .navbar{
        letter-spacing: 0.1em;
        padding: 10px 0;
    }
    
    .heading-content h5 {
        font-size: 3em;
    }
    
    .heading-content h1 {
        font-size: 3em;
    }
    
    .heading-content p {
        font-size: .9em;
    }  
}

@media screen and (max-width: 767px) {

    .navbar{
        letter-spacing: 0.1em;
        padding: 7 px 0;
    }
    
    .heading-content h5 {
        font-size: 2em;
    }
    
    .heading-content h1 {
        font-size: 2em;
    }
    
    .heading-content p {
        font-size: .7em;
    } 

.heading-content{
        top: 16%;
    }

    #about {
        text-align: center;
        
    }

}

.text{ 
    text-align: justify;
}
