:root {
    --card-color: #FFECC5;
    --secondary-color: #FFE5B1;
    --text-color: #737373;
    --head-color: black;
    --light-text-color: #F5F5F5;
}

body{
    background: url("./assets/mountains.jpg") no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
    font-family: "Mulish",  sans-serif;
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: 0.3s;
}


@keyframes fadeInUp {
    to{
        opacity: 1;
    }

}

body::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;

}

.app-logo{
    display: block;
    width: 300px;
    height: auto;
    margin-top: 0;
    margin-bottom: 20px;

}

.description{
    font-size: 24px;
    text-shadow: 2px 2px 3px black;
    color: var(--light-text-color);
    text-align: center;
}

.full-flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    align-items: center;
    gap: 0;
}


.cards{
    display: flex;
    font-size: 18px;
    gap: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    border-radius: 20px;
    height: auto;
    width: 300px;
    padding: 30px;
    background: #FFECC5;
    background: linear-gradient(180deg, rgba(255, 236, 197, 1) 0%, rgba(255, 229, 177, 1) 100%, rgba(255, 236, 197, 1) 100%);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box shadow 0.3;
}


.box:hover{
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.more{
    border: 2px solid black;
    padding: 15px;
    border-radius: 10px;
    background: #FFECC5;
    background: linear-gradient(180deg, rgba(255, 236, 197, 1) 0%, rgba(255, 229, 177, 1) 100%, rgba(255, 236, 197, 1) 100%);
    color: var(--text-color);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.7s transform 0.2s;
    text-decoration: none;
}

.more:hover{
    transform: translateY(-5px) scale(1.05);
    background: #f7f4f0;
    background: linear-gradient(180deg, rgba(247, 244, 240, 1) 0%, rgba(115, 115, 115, 1) 1%, rgba(181, 181, 181, 1) 100%);
    color: var(--light-text-color);
}

.list{
    list-style: none;
    text-align: center;
    padding: 0;
    line-height: 40px;
}

.list li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 30px;
    height: 30px;
    background: url("./assets/icons8-checkmark-24.png");
    background-size: contain;
}

footer{
    text-align: center;
    color: var(--light-text-color);
    opacity: 0.7;
    padding: 20px;
    font-size: 0.7rem;
}

footer a:link{
    color: var(--light-text-color)
}


@media (max-width: 600px) {
    .cards{
        flex-direction: column;
        gap: 20px;
    }

    footer{
        text-align: center;
    }

    .more{
        margin-bottom: 50px;
    }
}