main {
    gap: 1rem;
}

.picture,
.picture * {
    transition: all 0.1s ease;
}

.picture {
    gap: 1.5rem;
    flex-direction: row-reverse;
}

.picture .column {
    gap: 1.5rem;
    flex: 1;
}

.picture .pfp {
    max-width: 350px;
    justify-content: center;
    align-items: center;
}

.picture .pfp .imgcont {
    width: calc(100% - 50px);
    min-height: 300px;
    max-height: 700px;
    padding: 25px;
}

.block {
    border: 1px solid var(--brighter75);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.block .row {
    gap: 0.25rem;
}

.block h1,
.block h2,
.block h3,
.block h4,
.block h5,
.block p {
    margin: 0;
    padding: 0;
}

.contact .row {
    gap: 1.5rem;
}

.contact .column,
.contact .imgcont {
    margin-top: 1rem;
    flex: 1;
    gap: 1rem;
}

input, textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--brighter5);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
    border-color: var(--highlight);
    box-shadow: 0 0 5px var(--highlight);
    outline: none;
}

textarea {
    height: 150px;
    resize: vertical;
    width: 100%;
}

input::placeholder, textarea::placeholder {
    color: var(--brighter50);
}

#response-message {
    display: flex;
    align-items: center;
    font-weight: 700;
}

@media only screen and (max-width: 1000px) {
    .picture {
        flex-direction: column-reverse;
    }

    .pfp {
        max-width: unset !important;
        max-height: 350px;
    }

    .pfp .imgcont {
        height: 300px;
        max-height: 300px;
    }

    .mobile-hide {
        display: none !important;
    }
}