/* Home */
.content .card .headings{
    padding-top: 60px;
    font-size: 1.7rem;
}
.card a{
    font-size: 1rem;
    width: 143px;
    margin-top: 20px;
    padding: 6px 0px;
}
.card a span:after{
    font-size: 1.1rem;
    padding-left: 5px;
}

/* About */
#about{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-top: 50px;
    
}

#about #pic img{
    width: 180px;
    height: 180px;
}

.headings{
    font-size: 1.5rem;
}
#intro h2{
    font-size: 1.2rem;
}
#intro p{
    font-size: 0.9rem;
}

/* Portfolio */
#portfolio{
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url(projectbg.jpg);
    color: white;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.866);
}

.slider{
    width: 250px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}
.slides{
    width: 500%;
    height: 500px;
    display: flex;
}

.slide img{
    width: 250px;
    height: 350px;
}

.navigation-manual{
    width: 240px;
    margin-top: -200px;
}
.navigation-auto{
    width: 240px;
    margin-top: 300px;
}


/* Contact */
#contact{
    padding-top: 65px;
    background-image: url(contactbg.jpg);
}
.input{
    width: 80%;
}

#msg{
    width: 70%;
}
#send{
    width: 30%;
    border-radius: 15px;
    height: 30px;
    font-size: 1.1rem;
    padding-top: 5px;
    box-shadow: 0 0 10px white;
}

/*footer */
.social a{
    height: 40px;
    width: 40px;
    background-color: #f5f6fa;
    border-radius: 50px;
    text-align: center;
    line-height: 45px;
    margin: 10px;
    box-sizing: 1px 4px 2px 2px;
}
.social a i{
    font-size: 20px;
    transition: all 0.3s linear;
}

.social a:hover i{
    transform: scale(1.3);
}