header {
    background-color: red;
}

body {
    background-color: antiquewhite;
}

.section {
    height: 100vh;
    /* height: 980px; */
    /* width: 1920px; */
}

#intro {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://live.staticflickr.com/65535/52353535388_506fc83012_k.jpg');
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;

}

#name-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    border-radius: 15px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 25px;
    padding-bottom: 25px;
    background: rgba(255,255,255, .6);
    box-shadow: 10px 10px 5px ;
}

#name {
    font-size: 50px;
}

#title {
    font-size: 30px;
}

#about {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 800px;

}

.header {
    display: flex;
    justify-content: center;
    border: 1px solid black;
    border-radius: 50px;
}

#bio-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#profile-div {
    height: 300px;
    width: 200px;
    margin-right: 100px;
}

#profile-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#bio {
    width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 5px solid black;
    border-radius: 15px;
    padding: 50px;

}

#bio-pics {
    display: flex;
    justify-content: space-between;
    /* border: 1px solid black; */

}

.image-container {
    height: 250px;
    width: 250px;
}

.bio-images {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

#skills {
    height: 550px;
    /* display: flex;
    flex-direction: column; */
    /* background-color: blue; */
}

#all-icons {
    display: flex;
    flex-direction: column;
}

.rows {
    display: flex;
    justify-content: center;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 150px;
    width: 150px;
    margin: 30px;
}

.icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#projects {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 625px;
}

#all-projects {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.project-div {
    background-color: rgba(0, 0, 0, 0.2);
    width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid black;
    border-radius: 15px;
}

.project-title {

}

.project-tech {

}

.project-desc {
    text-align: center;
}

.a-tag-screenshot {

}

.screenshot {
    width: 550px;
    border: 1px solid black;
    border-radius: 15px;
}

.repo-link-holder {
    border: 1px solid black;
    border-radius: 15px;
    margin: 5px;
    text-decoration: none;
}

.repo-text {
    margin: 5px;
    color: black;
}

footer {
    display: flex;
    justify-content: space-around;
    height: 80px;
    border: 1px solid black;
    border-radius: 50px;
}

.bottom-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 50px;
    width: 50px;
    margin-top: 6px;
    text-decoration: none;
}

.bottom-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bottom-p {
    margin-top: 0px;
    color: black;
}