.about-hero {
    padding: 40px 10px 25px 20px;
    max-width: 1200px;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    color: var(--main-black);
    border-bottom: 3px dotted var(--main-grey);
}

.about-portait {
    width: 60%;
}

.about-me-text {
    margin-top: 6%;
    width: 40%;
}

.about-me-text h1{
    font-family: 'VD-LOGO-JR-STD-U';
    font-size: 50px;
    margin-bottom: 30px;
    margin-top: 0;
}

.about-me-text p{
    font-family: 'extraP';
    font-size: 12px;
    line-height: 20px;
    padding-right: 10px;
    /* ^^^ stupid fix idk ^^^ */
}

/* CSS FOR THE BIG TOOTHPICK IS IN STYLE.CSS */

.nice-things-container {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nicethings-bento {
    width: 100%;
}

.nice-things-photo-key {
    height: 100px;
    display: flex;
    gap: 12px;
}

.nice-things-photo-key p{
    font-family: 'extraP';
    font-size: 12px;
    line-height: 20px;
    margin: 0;
}

/* vvv SITE BUTTONS vvv */

.site-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
}

.site-button-container {
    /* background-color: pink; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

}

.site-button-border {
    border: 3px dotted var(--main-grey);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    position: relative;
}

.site-button-container textarea {
    resize: none;
    height: 90px;
    width: 100%;
}

.site-button-container img {
    /* object-fit: none; */
}

.M-sitebutton {
    width: 176px;
}

.L-sitebutton {
    width: 320px;
}

.button-size {
    position: absolute;
    bottom: 0;
    margin-bottom: 8px;
    font-family: 'extraP';
    font-size: 13px;
    color: var(--main-grey);
}

/* vvv COLLEAGUES SECTION vvv */

.okay-all-homies {
    /* margin-bottom: 50px; */
}

.homie-container {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 300px;
    border-bottom: 3px dotted var(--main-grey);
    /* padding-left: 10px; */
}

.homie-container:last-of-type {
    border-bottom: none;
}

.homie-description {
    /* background-color: pink; */
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--main-black);
    height: min-content;
    padding-left: 10px;
    gap: 10px;
    text-decoration: none;
}

.homie-description h3:hover {
    color: var(--main-accent);
}

.homie-description h3 {
    margin: 0;
    font-family: 'VD-LOGO-JR-STD-BK';
    font-size: 30px;
}

.homie-description p {
    margin: 0;
    font-family: 'extraP';
    font-size: 12px;
    line-height: 20px;
}

.homie-banner {
    width: 60%;
}

.homie-banner img {
    width: 100%;
}

.homie-banner:hover {
    transform: scale(1.01);
}