body{
    margin:0;
    background-color: black;
    font-family:Arial, Helvetica, sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.btn-gold {
    background-color: #D4AF37;
    color: white;
    border: 2px solid #D4AF37;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #b89222;
    border-color: #b89222;
    color: white;
}

.btn-outline-gold {
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.btn-outline-gold:hover {
    background-color: #D4AF37;
    color: white;
}


.hero{
    box-shadow: 5px 5px 20px  #D4AF37;    
    margin-top: 130px;
    margin-left: 50px;
    margin-right: 50px;
    border-radius: 10%;
    background-image:url("B2.jpg");
    background-size:cover;
    background-position:center;
    height:600px;
    display:inline-flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:190px 100px;
}

#H{
    box-shadow: #b89222;
    font-family:"Black Ops One", system-ui ;
    width: 700px;
    color: #D4AF37;
}
.black-ops-one-regular {
  font-family: "Black Ops One", system-ui;
  font-weight: 400;
  font-style: normal;
}

#Fcard{
    background-color: #d1ba6d;
    font-family:Arial, Helvetica, sans-serif;
    box-shadow: 5px 5px 20px  #D4AF37;
    margin-right: -100px;
    margin-top: -150px;
}
#Fcard:hover{
    transform:scale(1.05) rotate(0deg);
    transition: 0.1s ease-in-out;
    box-shadow: 0 .5px 1px 10px rgba(black, .15);
    cursor: pointer;
}
#allC{
    margin-top: -310px;
    padding-left: 140%;
    background-position: center;
    background-size:cover;
    justify-content:space-between;    
    padding-top: 25px;
    margin-left:-60px;
    margin-top: -320px;
    
}
.gradient-text {
    background: linear-gradient(to right, #8B6B1F, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0px #e9e8e3
    
}
.heroText{
    background-color: black;
    padding: 15PX;
    opacity: 80%;
    border-radius: 15px;
}
.card-link{
    color: rgb(105, 80, 16);
}

#btn1{
    background: linear-gradient(to right, #8B6B1F, #D4AF37, #FFD700);;
    border: 1px solid black;
    color: black;
}


#btn1:hover{
            transform: scale(1.05) rotate(3deg);
            box-shadow: 0 0 20px #d1ba6d;
            cursor: pointer;
            transition: 0.1s ease-out;
        }
#btn1{
    animation: upDown 2s infinite;
    transition: 0.4s ease-out;
    border: #000000 2px solid;
}

@keyframes upDown{
            0%{
                transform: translateY(0);
            }
            50%{
                transform: translateY(-10px);
            }

        }
