.home {
    height: 100vh;
    background-image: url("../assets/img/background.png");
    background-size: cover;
}

.home-container{
    width: 100%;
    height: 100%;

    padding: 0 10%;

    align-items: center;
    justify-content: space-between;
    
    backdrop-filter: blur(8px);
    background-color: #00000098;
}

.text-container{
    width: 860px;

    flex-direction: column;

    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);

    padding: 24px 0;
    gap: 14px;
}

.home-title{
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
}

.home-title span{
    color: var(--primary-color);
}

.home-description{
    color: var(--gray);
    font-size: 1.6rem;
}

.home-button {
    width: 240px;
    height: 60px;

    text-decoration: none;
}

.home-button button {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;

    gap: 8px;

    border-radius: 8px;
    border: none;

    cursor: pointer;

    transition: 0.3s ease;
}

.home-button button:hover {
    background-color: var(--primary-color-dark);
}

@media (max-width: 1363px) {
    .sphynx-logo{
        width: 420px;
    }
}

@media (max-width: 1056px) {
    .sphynx-logo{
        display: none;
    }

    .text-container{
        width: 100%;
    }
}