body {
    background-image: url("/IMAGES/SPLASHPAGE/CONCRETEBG.png");
    background-repeat: repeat;
    background-attachment: fixed;
}


#alphabody {
    margin: 0 auto 20px auto;
}
 
#bigframe {
    display: flex;
    width: clamp(200px, 80vw, 600px); 
    margin: 0 auto 20px auto;
    margin-top: 50px;
    padding: 10px 10px 10px 10px; 
    justify-content: center;
    transition-duration: 0.8s;
}

#bigframe:hover {
    background-color: rgba(25, 25, 25, 0.24);
    box-shadow: 0 0 30px rgba(205, 197, 180, 0.32);
    border-radius: 25px;
     transition-duration: 0.8s;
}

#bigframe img {
    object-fit: cover;
    width: 100%;
    height: auto;
    margin: auto;
   /* width: 100%;
    height: auto; 
    margin: auto; 
    z-index: 1; */
}

#bigframetext p {
    text-align: center;
    color: #cdc5b4;
    font-size: clamp(1.2em, 2.2vw, 40px);
}

a {
    text-decoration: none;
}


