.home{
    background-image: url(/images/header-background.jpg);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    animation: ascentOpacity 2s ease;
    height: 100vh;
}

.home_full{
    width: 100%;
    height: 100%;
}

.home_part{
    margin-left: 64px;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutme{
    align-items: center;
    place-items: center;
    justify-content: center;
    display: flex;
    background: linear-gradient(45deg, #ca73a9, #c38cdd, #8e7fd8, #639bb4);
    background-size: 300% 300%;
    animation: colors 5s ease infinite;
}

.aboutme_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 12px 28px 64px 28px;
}

.aboutme p{
    color: #e8ebef;
    font-size: 18px;
    text-align: justify;
    font-family: 'Poppins';
    width: 70%;
}

.socialmedia{
    align-items: center;
    place-items: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
}

.socialmedia h1{
    display: flex;
    justify-content: center;
    margin: 100px 0px 64px;
    font-size: 48px;
    margin: 0;
}

.experience{
    align-items: center;
    place-items: center;
    justify-content: center;
    display: flex;
}

.experience_subtitle{
    color: rgb(138, 138, 138);
    font-family: 'Poppins';
    font-weight: bold;
    font-size: 16px;
    justify-content: center;
    display: flex;
    margin-top: 18px;
    padding: 16px;
    text-align: center;
}

#experience_skills{
    margin-bottom: 128px;
}

#home_bottom_name{
    transform: translateY(-24px);
}

#experience_title{
    justify-content: center;
    display: flex;
    font-family: 'Anton';
    font-size: 48px;
    margin-top: 128px;
}

#aboutme_title{
    display: flex;
    justify-content: center;
    margin: 100px 0px 0px;
    font-size: max(48px, 10%);
    color: #e8ebef;
}

#social_icons{
    transform: translateY(-13px);
}

@keyframes colors{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}

@keyframes ascentOpacity{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

@media (max-width: 728px){
    h1{
        font-size: 72px;
        margin: 0 0 -32px 0;
    }
    h2{
        font-size: 20px;
        color: rgb(37, 37, 37);
    }
    #home_bottom_name{
        transform: translateY(18px);
    }
    #home_part_right{
        display: none;
    }
    #social_icons{
        transform: translateY(18px);
    }
    .icon_home{
        width: 20px;
    }
    .home_part{
        width: 100%;
        margin: 0;
    }
    .navbar{
        justify-content: center;
    }
    .column{
        padding: 12px;
    }
    .column h2{
        font-size: 12px;
    }
    .aboutme p {
        width: 91%;
    }
    .icon{
        width: 48px;
    }
    .aboutme_content{
        margin-bottom: 110px;
    }
    #experience_title{
        margin-top: 92px;
        font-size: 36px;
        margin-left: 12px;
    }
}