#home {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.home-container {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 50px;
    position: relative;
}

.home-content p:first-child {
    font-size: 60px;
    margin-bottom: 20px;
}

.home-content p {
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 25px;
}

.home-interactions {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.home-btn {
    background-color: var(--card-color);
    color: var(--text-color);
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.home-btn:first-child {
    margin-right: 10px;
}

.home-btn:hover {
    background-color: var(--orange-color);
    color: var(--text-label-color);
}

.home-lang-div {
    display: none;
    opacity: 0;
    width: 100px;
    background-color: var(--card-color);
    border-radius: 5px;
    margin-top: 5px;
    position: absolute;
    top: 40px;
    left: 2px;
}

.home-lang-list {
    list-style-type: none;
    padding: 10px;
    text-align: center;
}

.home-lang-resume {
    margin-top: 5px;
    width: 100%;
    height: 100%;
    font-weight: bold;
    padding: 10px 0;
}

.home-lang-resume:hover {
    background-color: var(--orange-color);
    color: var(--text-label-color);
    cursor: pointer;
    border-radius: 5px;
}

.home-lang-resume:first-child {
    margin-top: 0;
}

@media (min-width: 320px) and (max-width: 768px) {
    .home-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        justify-content: space-evenly;
    }

    .home-container img {
        width: 50%;
        height: auto;
    }

    .home-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: 0;
    }

    .home-content p {
        text-align: center;
        font-size: 20px;
    }
}
