html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: "BBH Bartle", "Montserrat", Helvetica, sans-serif;
    background-color: rgb(8, 25, 11);
    color: rgb(230, 255, 230);
    min-height: 100dvh;
    height: 100dvh;
    /* border: 1px solid red */
}

.page-container {
    /* border: 1px solid green; */
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 95dvh;
}

.navbar {
    list-style-type: none;
    font-size: 12px;
    margin: 0;
    padding: 0;
    /* border: 1px solid blue; */
    display: flex;
    height: 5dvh;
}

.navbar-item {
    margin: 10px;
    width: auto;
    height: auto;
}

.navbar-item a {
    color: rgb(230, 255, 230);
    text-decoration: none;
}

.navbar-item a:hover {
    color: rgba(230, 255, 230, 0.5);
}

.navbar-item a:focus {
    color: rgb(230, 255, 230);
}

.navbar-item a:active {
    color: rgb(230, 255, 230);
}

.title-container {
    /* margin-top: 25dvh; */
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    /* border: 1px solid yellow; */
    margin-bottom: 50px
}

.cropped-image {
    margin-top: 20px;
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(230, 255, 230, 0.2);
    border-radius: 50%;
}

.link-row {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 80%;
    /* border: 1px solid red */
}

.link-col {
    display: inline-block;
    width: auto;
    height: auto;
    border: 1px solid rgba(230, 255, 230, 0.2);
    border-radius: 50%;
    justify-content: center;
    padding: 5px;
}

.link-col:hover {
    background-color: rgba(230, 255, 230, 0.2);
    border-color: rgb(8, 25, 11);
}

.link-item a {
    color: rgb(230, 255, 230);
    text-decoration: none;
    font-size: 18px;
    align-items: center;
    display: inline-flex;
}

img {
    vertical-align: middle;
}



/* FORM STUFF */

.contact-container {
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 20px;
    font-family: "Montserrat", Helvetica, sans-serif;
    margin-bottom: 50px;
}

#contact-me {
    font-family: BBH Bartle, Montserrat, Helvetica, sans-serif;
    margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    font-family: Montserrat, Helvetica, sans-serif;
}

.input-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input {
    flex: 1 1 calc(50% - 6px);
    min-width: 200px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(230, 255, 230, 0.2);
    background-color: rgba(230, 255, 230, 0.01);
    color: rgb(230, 255, 230);
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.contact-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(230, 255, 230, 0.2);
    background-color: rgba(230, 255, 230, 0.01);
    color: rgb(230, 255, 230);
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(230, 255, 230, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgb(230, 255, 230);
}

.contact-form button {
    width: auto;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(230, 255, 230, 0.4);
    background-color: transparent;
    color: rgb(230, 255, 230);
    font-family: "BBH Bartle", "Montserrat", Helvetica, sans-serif;
    cursor: pointer;
    box-sizing: border-box;
    align-self: center;
}

.contact-form button:hover {
    background-color: rgba(230, 255, 230, 0.2);
}

