#hero{
    min-height: 100vh;
    background-image:
        radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.7) 100%
        ),
        linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6)
        ),
        url(/img/gym.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    scale: 1.3;
    animation: fadeUp 0.8s ease-out both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title{
    width: 300px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid #A90000;
    background-color: rgba(169, 0, 0, 0.32);
    border-radius: 999px;    
    padding: 0 20px;
    line-height: normal;
}

#button-glow{
    box-shadow: 0 0 20px rgba(169, 0, 0, 0.5);    
}

.hero-title p{
    margin: 0;
    text-transform: uppercase;
    font-weight: bolder;
}

#heading, #subheading{
    text-transform: uppercase;
    font-weight: bolder;
    margin: 0px;
}

#heading{
    padding-top: 10px;
}

#subheading{
    background-image: linear-gradient(to right,#A90000, #ff0062);
    color: transparent;
    background-clip: text;
}

.tags{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.tag{
    margin: 0;
    color: #AEAEAE;
}

.hero-button{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.btn-item{
    width: 200px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3px;
}

.custom-button-transparent{
    color: white;                    
    border: 2px solid #571212;
    line-height: 38px;         
    border-radius: 999px;            
    text-align: center;
    transition: border 0.3s ease;
    font-weight: 600;
}

.custom-button-transparent:hover{
    border: 2px solid gray;   
    color: white;
}

.tag, .body{
    padding: 5px;
}

@media (max-width: 800px) {
    .hero-button{
        flex-direction: column;
        gap: 1;
    }
    .hero-content{
        scale: .8;
        text-align: center;
    }
    .btn-item{
        width: 450px;
        padding: 30px;
    }


    /* #heading, #subheading{
        font-size: 2px;
    } */
}