body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "width" 100;
    background-color: rgb(66, 66, 66);
    color: white;
}

h1, h2{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

#socials {
    display: flex;
    align-items: left;
    justify-content: left;
}

#socials ul {
    list-style-type: none;
}

#socials h2 {
    margin: 0;
    padding: 0;
}

.bio {
    background-color: rgb(55, 55, 55);
    border-radius: 10px;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
}

.bio div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
    margin-left: 20px;
}

img {
    width: 15%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: lightskyblue
}

a:hover {
    text-decoration: underline;
    color: rgb(71, 170, 232)
}

.projects {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    background-color: rgb(55, 55, 55);
    margin: 20px;
    padding: 20px;
    padding-top: 0px;
    border-radius: 10px;
}

.projects ul {
    list-style-type: none;
    text-align: left;
    margin: 0;
    margin-top: 20px;
    padding: 10px;
    background-color: rgb(94, 94, 94);
}

.projects h1 {
    margin-bottom: 0;
}

.projects ul li p {
    margin: 0;
    padding: 0;
}

.title {
    cursor: pointer;
    transition: 0.2s ease;
}

.title:hover {
    color: rgb(189, 189, 189);
}

.title.active {
    margin-bottom: 5px;
    font-weight: bold;
}

.url, .description {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.url.active, .description.active {
    max-height: 100%;
}

#contact-form {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(55, 55, 55);
    margin: 20px;
    padding: 20px;
    padding-top: 0px;
    border-radius: 10px;
}

#contact-form div {
    margin: 10px;
    display: flex;
    align-items: right;
    justify-content: right;
}

#contact-form div:last-child {
    justify-content: center;
}

#contact-form label {
    margin-right: 8px;
}