
.home_container {
    position: relative;
    padding: 0;
    height: calc(100vh - 24px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;

    .projects {
        z-index: 1;
        display: flex;
        flex-direction: column;;
        justify-content: center;
        gap: 16px;
        height: 100%;
        margin-left: 24px;

        a {
            font-family: 'Delight', sans-serif;
            font-weight: 600;
            font-size: 20px;
            width: fit-content;
            cursor: none;
            color: #AE041E;
            text-decoration: none;
        }
    }

    .bottom_container {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;

        h1 {
            z-index: 1;
            margin: -24px 24px;
            padding: 0;
            font-family: 'Thunder', sans-serif;
            font-weight: 700;
            font-size: 180px;
            color: #AE041E;
            line-height: normal;
            user-select: none;

            @media (width <900px) {
                font-size: 120px;
                flex-direction: column;
                gap: 0;
            }
        }

        .socials {
            display: flex;
            flex-direction: row;
            gap: 24px;
            padding: 0 24px;
            z-index: 1;

            a {
                width: fit-content;
                font-family: 'Delight', sans-serif;
                font-weight: 600;
                font-size: 20px;
                font-weight: 500;
                cursor: none;
                color: #AE041E;
                text-decoration: none;
            }
        }
    }
}

@media (width <900px) {
    .home_container {
        .projects {
            a {
                font-size: 24px;
            }
        }
        .bottom_container {
            .socials {
                display: none;
            }
        }
    }
} 