*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

nav{
    background-color: #393053;
}   

.main{
    background-image: url("assets/first-section-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

#brand{
    font-family: cursive;
}

.heading-title{
    border-bottom: 5px solid rgb(3, 143, 19);
    width: fit-content;
}

.fisrt-layer{
    display: grid;
    place-items: center;
    width: 50%;
}

.first-content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    place-items: center;
    min-height: 80vh;
}


.prof-pic img{
    border-radius: 20px;
    max-width: 450px;
    height: 450px;
}

.find-me-on{
    color: white;
}
.find-me-on>button{
    color: white;
    background-color: #393053;
    font-size: 1rem;
    padding: 0.25em 1em;
    border-radius: 0.25em;
    text-shadow: 0 0 0.125em;
}

.about-me-card{
    /* width: 200px; */
    /* background-color: aliceblue; */
    /* color: #393053; */
    padding: 1rem;
}

.skill-item{
    width: 30rem;
}

.righttoleft{
    animation: RightToLeft 10s infinite linear;
}

@keyframes RightToLeft {
    from{
        transform: translateX(0%);
    }
    to{
        transform: translateX(-50%);
    }
}


.foot-left{
    width: 50%;
}

.foot-right{
    width: 50%;
}

#copyright-footer{
    text-align: center;
    top: 80%;
    width: 100%;
}  

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

    .first-content{
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
    .prof-pic img{
        margin-top: 20px;
        border-radius: 20px;
        max-width: 200px;
        height: 200px;
    }

}
