* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geist', sans-serif;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;


    height: 100vh;
    width: 100vw;

}

.container {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: top;

    max-width: 1200px;
    margin: auto;
    padding: auto;
    background-color: #fff;
    border: 1px solid #e7e7e7;

    position: relative;

    padding: 120px 40px;
    gap: 8px;


}

.container::after {

    content: '';
    position: absolute;

    height: 80%;
    width: 100%;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;

    top: -1;
    left: 50%;
    transform: translateX(-50%);





    opacity: 1;
    z-index: 1;

}

.name {

    font-family: 'Geist', sans-serif;

    font-size: 1.4rem;
    font-weight: 560;
    color: #1c1c1e;
    text-align: left;
    width: 100%;
    margin-top: 40px;

    animation: fadeIn 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.subtext {

    font-family: 'Geist', sans-serif;

    font-size: 1rem;
    color: #6e6e73;
    text-align: left;
    width: 100%;

    animation: fadeIn 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;

}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;


    margin-top: 20px;
    margin-bottom: 16px;

    animation: fadeIn 0.8s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;


}

@keyframes fadeIn {

    from {
        opacity: 0;
        filter: blur(6px);
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
    
}

.container {
    animation: fadeIn 0.8s ease-out;
}
