/* About */

@font-face {
    font-family: 'Satoshi-Medium';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'), 
         url('../fonts/Satoshi-Medium.woff') format('woff'),
         url('../fonts/Satoshi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
}

.fade-in.appear {
    animation: fadeInUp 0.8s ease forwards;
}

#about_container {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 25px auto 150px auto;
    padding: 0;
}

#about_container p{
    font-family: 'Satoshi-Medium';
    font-weight: 400;
    font-size: 15px;
    color: #222;

    text-align: justify;
    padding: 0;
    margin: 0;
}

#content_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#about_text {
    max-width: 440px;
}

#about_text h1{
    padding: 0;
    margin: 0;
    padding-bottom: 20px;
}

#about_text p{
    padding-bottom: 20px;
}

#about_img {
    max-width: 425px;
    padding: 0;
    margin-top: 25px;
}
#about_img img {
    width: 100%;
}
.hello {
    font-size: 100px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    padding-bottom: 20px;
}
.hello .colon {
    color: #ED6A5A;
}
.intro {
    font-size: 25px !important;
    margin-bottom: 20px;
}
.details {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.details-column {
    flex: 0 1 auto;
    width: auto;
    padding: 0;
    margin: 0 30px 0 0;
}

.details-column:last-child {
    margin-right: 0;
}

.details-column:first-child,
.details-column:last-child {
    width: auto !important;
}

.details-column h3,
.details-column p {
    white-space: nowrap;
}

#skills{
    display: flex;
    width: auto;
    max-width: 425px;
}

.details-column h3 {
    margin-top: 0;
    margin-bottom: 10px !important;
}
 
.details-column h3{
    font-family: 'Satoshi-Medium';
    font-weight: 400;
    font-size: 15px;
    color: #222;
}

.details-column p{
    font-family: 'Satoshi-Medium';
    font-weight: 400;
    font-size: 15px;
}

.light{
    color: #888 !important;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}