/*
body {
    background-image: url("/static/assets/backgrounds/home_bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
*/



/* ---------------- HERO CENTERING ---------------- */
.hero {
    text-align: center;
    margin-top: 80px;
    color: rgb(5, 5, 5);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 30px;
    
}

/* ---------------- CARD BUTTONS ---------------- */
.main-actions {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* turn links into rectangular cards */
.big-btn {
    width: 260px;
    height: 140px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    color: white;

    border-radius: 12px;
    border: 1px solid #333;

    background: #111;

    transition: 0.2s ease;

    box-shadow: 0 6px 0 #000;
}

/* hover effect */
.big-btn:hover {
    transform: translateY(-5px);
    border-color: #555;
    box-shadow: 0 12px 0 #000;
}

/* PRIMARY CARD */
.primary {
    background: linear-gradient(145deg, #4f46e5, #3730a3);
}

/* SECONDARY CARD */
.secondary {
    background: #111;
}


/* Updates link*/
.tip-wrapper {
    text-align: center;
    margin-top: 15px;
}

.tip {
    color: #ffcc00;
    text-decoration: none;
}

.tip:hover {
    text-decoration: underline;
}