:root {
    --accent-color: #47cc1f;
    --background-color: #f5f5f5;
}

.new_main {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

main {
    display: grid;
    grid-template-columns: 30% 70%;
    padding-top: calc(60px + 2rem);
    margin: 0 2rem;
    flex: 1;
    min-height: 0;
}

.profile_pic_container {
    display: flex;
    justify-content: center;
}

.profile_group_container {
    width: 100%;
}

.profile_text_container {
    padding-bottom: 20px;
    /*width: 100%; */
}

.title_container {
    padding-bottom: 10px;
}

.profile_picture {
    border-radius: 5%;
    height: 350px;
}

.contact_section {
    text-align: center;
    grid-column: 1/-1;
}

hr {
    border: none;
    height: 2px;
    margin: 20px 31%;
    background-color: black;
}

.icon_group {
    display: flex;
    justify-content: center;
    max-width: 100%;
    margin-top: 20px;
    gap: 20px;
}

.icon_link {
    height: 2rem;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.icon_link:hover {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(51%) sepia(94%) saturate(336%)
        hue-rotate(65deg) brightness(100%) contrast(92%);
}

footer {
    grid-column: 1/-1;
}

@media (min-width: 2560px) {
    /* html {
        font-size: 1rem;
    } */
}

@media (min-width: 1440px) {
    /* html {
        font-size: 1rem;
    } */

    .icon_link {
        height: 3rem;
    }

    .icon_group {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .profile_picture {
        height: 250px;
    }
}

@media (max-width: 1023px) {
    main {
        grid-template-columns: 1fr;
    }

    .profile_picture {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    main {
        margin: 0 1.3rem;
    }
}
