/*

Introductory information

*/

#welcome-box {
    padding-top: 100px;
    border-radius: 50px 0px;
}


#intro-textbox {
    float: right;
    font-size: 50px;
    width: fit-content;
}

#intro-name {
    color: rgb(119, 185, 187);
    font-size: 60px;
    padding-bottom: 10px;
}


#user-img {
    width: 150px;
    margin: auto;
    float: left;
    border-radius: 40px 10px;
    border-width: 2px;
    border-style: double groove ridge;
    border-color: rgb(59, 142, 148);
}


/*

Programming skills table

*/


#programming-skill-div {
    align-items: center;
    align-content:center;
    text-align: center;
    padding-left: 30px;
    padding-top: 100px;
    padding-right: 5%;
    padding-bottom: 50px; 
    margin: auto;
}

#programming-skill-header {
    font-size: 50px;
    padding: 20px;
    height: fit-content;
    background-color: rgb(63, 96, 97);
    color:rgb(28, 39, 39);
    border-radius: 50px 20px;
    border-width: 5px;
    border-color: rgb(45, 84, 85);
    border-style: groove double ridge;
}

/*
Bottom half of index page
*/

#contact-info-container {
    width:70%;
    height: fit-content;
    padding: 30px;
    background-color: rgb(56, 89, 90);
    color: rgb(30, 46, 46);
    border-color: rgb(109, 152, 153);
    border-style: groove;
    border-radius: 50px 10px;
}

#index-first-paragraph {
    font-size: 20px;
    width: 60%;
}

#contact-info {
    padding-left: 150px;
    padding-right: 100px;
}

.contact-item {
    height: fit-content;
    padding: 20px;
    margin: 10px 2px;
    text-align: center;
    display: flex;
    font-size: 25px;
    border-style: groove;
    border-radius: 50px 10px;
    border-color:transparent;
}

.contact-item:hover {
    background-color: rgb(44, 72, 73);
    color: rgb(48, 134, 127);
    border-color: rgb(73, 117, 117);
    transition: all 400ms ease;

}

.contact-pic {
    height: auto;
    max-height: 40px;
    width: auto;
    max-width: 40px;
}

.contact-pic-detail {
    padding-left: 30px;
    padding-top: 5px;
}

#pic-and-text {
    display: flex;
}