

body {
    background-color:black;
    text-align:center;
    font-family: macondo;
    letter-spacing:3px;
    max-width:100%;

    
}

h1 {
    color:white;
    text-align:center;
    margin-top:50px;
}

hr {
    margin-top:30px;
    width:50%;
    height:2px;
    background-color: rgb(76, 159, 226);
    border-color:rgb(76, 159, 226)
   
}

ul {
    color:white;
    font-size:22px;
    list-style:none;
    padding:25px;
    margin-top:-30px;
}

li {
    display:inline-block;
    padding:25px;   
}

li:hover{
    transform:scale(1.1);
    transition:0.3s ease-in-out;
    text-decoration:underline ;
    text-underline-offset: 15px;   /* space between text and underline */
}


a {
    text-decoration:none;
    color:rgb(127, 83, 143);
  
}

a:hover{
    color:green;


}


.image-grid {
    margin-top:50px;
    display: inline-grid;
    justify-content:center;
    grid-template-columns: repeat(2, 1fr); /* 3 columns, each takes 1 fraction of available space */
    grid-gap:0; /* Optional: Add spacing between images */
    max-width:100%;
    
    
}
  
.content-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2%;
    margin-top: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

img {
    width: 45%;
    max-width: 400px;
    aspect-ratio: 400/620; /* Maintains original proportions */
    border-radius: 5px;
}

.textbox {
    width: 45%;
    max-width: 400px;
    aspect-ratio: 400/620; /* Same proportions as image */
    color: rgb(42, 35, 35);
    font-family: bellefair;
    font-size: clamp(14px, 1.5vw, 30px);
    text-align: left;
    letter-spacing: 1px;
    padding: 25px;
    overflow: auto;
    background: url("../images/VintagePaper.jpg");
    border-radius: 5px;
    box-sizing: border-box;
   
}

#acim-text-button {
    margin-top: 35px;
    padding: 25px;
    border:none;
    border-radius: 5px;
    font-family: macondo;
    font-size: 25px;
    background-color: rgb(127, 83, 143);
}

#acim-text-button a {
    color: black !important;
    text-decoration: none; /* This removes the underline if you want */
}

#acim-text-button a:hover {
    color: white !important;
 animation: glow 5s ease-in-out infinite alternate;
}

@keyframes glow  {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e9d7e0;
    }
    
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #e7d3dd, 0 0 40px #ded3d8;
    }
  }

/* Responsive styles */
@media screen and (max-width: 768px) {
    #acim-text-button {
        padding: 20px 15px;
        font-size: 20px;
        margin-top: 25px;
    }
}



.footermessage {
    color:white;
    /*position: static;
   left: 0;
   bottom: 0;
   width: 100%;*/

margin-top:80px;
   text-align: center;
}