.atkinson-hyperlegible-regular {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 400;
    font-style: normal;
}
  
  .atkinson-hyperlegible-bold {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 700;
    font-style: normal;
}
  
  .atkinson-hyperlegible-regular-italic {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 400;
    font-style: italic;
}
  
  .atkinson-hyperlegible-bold-italic {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lexend-deca-regular {
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.lexend-deca-bold {
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.lexend-deca-black {
    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}


body {
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 400;
    color: rgb(51, 46, 46);
    background-color: rgb(254, 247, 244);
    padding-top: 50px;
    padding-bottom: 50px;
}

a {
    color: rgb(51, 46, 46);
    text-decoration: underline;
}

header {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(254, 247, 244);
}

.website-url {
    font-family: 'Lexend Deca', sans-serif; 
    font-weight: 900;
    font-size: 30px;
    text-align: center;
    margin: 0px;
    color: rgb(51, 46, 46);
    text-decoration: none;
    width: 200px;
}

.language-container {
    width: 34px;
    height: 24px;
}

.language-icon {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 6px;
    border-style: none;
    border-width: 3px;
    transition: border 0.1s ease;
    border-color: rgb(51, 46, 46), argb(51, 46, 46, 0.7), argb(51, 46, 46, 0.7), rgb(51, 46, 46);
}

.language-icon:hover {
    border-style: solid;
}

.row-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.column-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gap5 {
    gap: 5%;
}

.align-right {
    align-items: end;
}

.align-center {
    align-items: center;
}

.align-left {
    align-items: start;
}

.intro-text-section {
    min-width: 422px;
    max-width: 550px;
}

h1 {
    font-family: 'Lexend Deca', sans-serif; 
    font-weight: 900;
    font-size: 60px;
    text-align: center;
    margin: 0px;
}

h2 {
    font-family: 'Lexend Deca', sans-serif; 
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    margin: 0px;
}

h3 {
    font-family: 'Lexend Deca', sans-serif; 
    font-weight: 900;
    font-size: 30px;
    text-align: center;
    margin: 0px;
}

.intro-text-about {
    font-family: 'Atkinson Hyperlegible', sans-serif; 
    font-weight: 400;
    font-size: 18px;
}

.profile-image-section {
    min-width: 50px;
    max-width: 300px;
}

.profile-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    border-color: rgb(51, 46, 46);
}

.links-section {
    min-width: 80px;
    max-width: 500px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 30px;
}

.link-container {
    width: 80px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.link-icon {
    width: 60px;
    height: 60px;
}

.link-text {
    text-decoration: underline;
    color: rgb(51, 46, 46);
    text-align: center;
}

@media (width <= 600px) {
    .row-section-wrap-mobile {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .column-section-wrap-mobile {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .intro-text-section {
        min-width: 200px;
        max-width: 500px;
    }
    
    .profile-image-section {
        min-width: 50px;
        max-width: 200px;
    }

    h1 {
        font-size: 48px;
    }
}