@import "tailwindcss";

:root {
    --primary-color: #1C2541;
    --secondary-color: #3A506B;
    --background-color: #06101B;
    --accent-color: #D66853;
}

body {
    background-color: var(--background-color);

}




.jump-button{
    border-radius: 10px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    width: 80vw;
    padding: 40px 20px;
    align-items: center;
    font-size: xx-large;
    min-width: 200px;
}

.jump-button:hover {
    background-color: var(--secondary-color);
    cursor: pointer;
    color: var(--accent-color);
}


.jump-button img {
    width: 100px;
    height: 100px;
}



.img-text-row{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 100px;

    width: 80%;
    gap: 50px;
}

.img-text-row img {
    width: 300px;
}

.section-title {
    color: var(--accent-color);
    font-size: 2.5rem;
    line-height: 1.12;
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
}



@media screen and (min-width: 1000px) {
    .img-text-row {
        width: 60%;    
        flex-direction: row;
            flex-wrap: nowrap;
    }

    .jump-button {
        padding: 10px 20px;
        width: 200px;
        font-size: initial;
    }
    .jump-button img {
        width: 50px;
        height: 50px;
    }
    
}