*{
    margin: 0;
    padding: 0;
    font-family: monospace;
    text-transform: capitalize;
}
body{
    background: radial-gradient(#ffd700, rgb(0,0,0));
    color: #fff;
}
button{
    cursor: pointer;
    width: 150px;
    height: 50px;
    text-align: center;
    align-items: center;
    background: gold;
}
.hero{
    width: max-content;
    padding: 15px 30px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 1pc #000;
}
.hero .top{
   bottom: 100px;
   top: 100px;
   right: 0;
   left: 150px;
   position: absolute;
    width: 600px;
}
.hero .top a button{
    width: 150px;
    height: 70px;
    position: absolute;
    background: linear-gradient(#000, #ffd700);
    border: 5px solid #cccccc31;
    border-radius: 20px;
    margin-top: -20px;
    box-shadow: 0 2px 9px #ccc;
    transition: .6s;
}
.hero .top a button:hover{
    background: radial-gradient(circle,#ffd700, wheat, rgb(0,0,0));
    cursor: pointer;
    rotate: 360deg;
}
.hero .extras{
    width: 400px;
    border-radius: 30px;
    margin-top: 250px;
    box-shadow: 0 2px 9px #ccc;
}
.hero .extras a button{
    width: 150px;
    height: 70px;
    background: radial-gradient(circle,#ffd700, wheat, rgb(0,0,0));
    border-radius: 30px;
    cursor: pointer;
    transition: .7s;
}
.hero .extras a button:hover{
    background: transparent;
    transform: scale(1.44);
}
.hero .extras h1{
    text-transform: capitalize;
    font-size: 30;
    font-weight: 100;
}
.hero .extras p{
    font-weight: 900;
    font-size: 18px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 200px;
    color: #fff;
    
}
.hero .extras a{
    text-decoration: solid wavy;
    color: unset;
   font-size: 21px;
    border: 0;
    outline: 0;
}
.hero .bottom{
    box-shadow: 0 20px 9px 30px  #ffd700;
    border: 2px solid;
}
.hero .bottom img{
    width: 100px;
}
.hero .bottom a button{
    width: 100px;
    height: 50px;
    color: #777;
    outline: none;
    border: 5px solid black;
    border-radius: 30px;
    background: transparent;
    cursor: pointer;
}
.hero .bottom a button:hover{
    background: #777;
}




.bible-verse{
            display: grid;
        grid-template-columns: repeat(3, 1fr);
        place-items: center;
        gap: 2rem;
        max-width: 1000px;
        margin: auto;
        border: 2px solid;
        padding: 20px 20px;
        background: #00000086;
}
.bible-verse p{
    border: 2px solid;
    background: #ffd90067;
}
.bible-verse h1{
    font-size: 50px;
}

.loader{
    
        border: 16px solid #f3f3f3;
        border-top: 16px solid #FFD700; /* Gold loader */
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: spin 1s linear infinite;
    
    
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

* {
    margin: 0;
    padding: 0;
    font-family: monospace;
    text-transform: capitalize;
}
body {
    background: radial-gradient(#ffd700, rgb(0,0,0));
    color: #fff;
    margin: 0;
    padding: 0;
}
button {
    cursor: pointer;
    width: 150px;
    height: 50px;
    text-align: center;
    align-items: center;
    background: gold;
    font-size: 16px;  /* Ensure buttons have legible font size */
}
.hero {
    width: 100%;
    padding: 15px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 1pc #000;
}
.hero .top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.hero .top a button {
    width: 180px;
    height: 70px;
    background: linear-gradient(#000, #ffd700);
    border: 5px solid #cccccc31;
    border-radius: 20px;
    box-shadow: 0 2px 9px #ccc;
    transition: .6s;
}
.hero .top a button:hover {
    background: radial-gradient(circle, #ffd700, wheat, rgb(0, 0, 0));
    cursor: pointer;
    transform: rotate(360deg);
}
.hero .extras {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    margin-top: 50px;
    box-shadow: 0 2px 9px #ccc;
    text-align: center;
}
.hero .extras a button {
    width: 150px;
    height: 70px;
    background: radial-gradient(circle, #ffd700, wheat, rgb(0, 0, 0));
    border-radius: 30px;
    cursor: pointer;
    transition: .7s;
}
.hero .extras a button:hover {
    background: transparent;
    transform: scale(1.44);
}
.hero .extras h1 {
    font-size: 2rem;
}
.hero .extras p {
    font-weight: 900;
    font-size: 18px;
    color: #fff;
}
.hero .extras a {
    text-decoration: none;
    color: unset;
    font-size: 21px;
    border: 0;
    outline: 0;
}
.hero .bottom {
    box-shadow: 0 20px 9px 30px #ffd700;
    border: 2px solid;
    margin-top: 20px;
    text-align: center;
}
.hero .bottom a button {
    width: 100px;
    height: 50px;
    color: #777;
    outline: none;
    border: 5px solid black;
    border-radius: 30px;
    background: transparent;
    cursor: pointer;
}
.hero .bottom a button:hover {
    background: #777;
}

.bible-verse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background: #00000086;
    border: 2px solid;
}
.bible-verse p {
    border: 2px solid;
    background: #ffd90067;
    padding: 10px;
}
.bible-verse h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #FFD700;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Media Queries for Responsiveness */
@media only screen and (max-width: 768px) {
    .hero .top {
        position: static;
        text-align: center;
        margin-top: 30px;
    }
    .hero .extras {
        margin-top: 20px;
    }
    .hero .extras h1 {
        font-size: 1.8rem;
    }
    .hero .extras p {
        font-size: 16px;
        position: static;
        color: #fff;
    }
    .hero .bottom a button {
        width: 150px;
        height: 50px;
    }
    .bible-verse {
        grid-template-columns: 1fr; /* Stack verses vertically on small screens */
        padding: 15px;
    }
    .bible-verse h1 {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 480px) {
    button {
        width: 120px;
        height: 40px;
    }
    .hero .top a button {
        width: 100%;
    }
    .hero .extras {
        max-width: 400px;
    }
    .hero .extras a button {
        width: 100%;
    }
    .bible-verse p {
        font-size: 14px;
    }
}
