html{
    background-color: #68b3fe;
    color: #000000;
    text-decoration: none;
    font-family: "Happy Monkey", system-ui;
    font-weight: 400;
    font-style: normal;
    
}
header{
    text-align: center;
}

/* Using !important to override conflicting styles */
.main img {
    width: 20px !important;
    height: 20px !important;
}

.title{
    font-weight: 900;
    font-size: 3rem;
}

.infoContainer{
    display: flex;
    gap: 3vw;
    justify-content: center;
}

.infoItem{
    flex-grow: 1;
    font-weight: 500;
}

.infoName{
    order: 1;
}

.infoTitle{
    order: 2;
}

.infoHours{
    order: 3;
}

main{
    width: 70vw;
    margin-left: 15vw;
    padding-right: 15vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 1rem;
}

article {
    border-radius: 1rem;
    padding: 1rem; /* Adjust padding as needed */
    width: calc(50% - 2rem); /* Adjust width or use percentage for responsiveness */
    margin: 1rem; /* Adjust margin to create space between articles */
    overflow: hidden; /* Ensure content doesn't overflow */
    position: relative; /* Ensure relative positioning for absolute child elements */
}

article:hover {
    background-color: rgb(255, 255, 255);
}

article h1,
article .tagContainer {
    color: inherit; /* Ensure text color is inherited */
}

.tagItem {
    background-color: transparent;
    color: rgb(244, 244, 244);
    border-radius: 2rem;
    padding: 0.2rem 1rem; /* Adjust padding for tag items */
    font-style: italic;
}

@media screen and (max-width: 800px) {
    article {
        width: 100%; /* Full width on smaller screens */
    }
}

/* Optional: Ensure hover does not affect other elements */
article:not(:hover) .tagItem {
    background-color: transparent;
}


a{
    color: inherit;
    text-decoration: inherit;
}

.tagContainer{
    display: flex;
    gap: 1rem;
}

.tagItem{
    background-color: transparent;
    color: rgb(6, 34, 75);
    border-radius: 2rem;
    padding: 0.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-style: italic;
}

.subtitle{
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
}

.backHover:hover{
    color: #ffffff;
    background-color: transparent;
}

@media screen and (max-width: 800px) {

    .infoName {
        order: 2;
        width: 100%;
    }

    .infoTitle{
        order: 1;
        width: 100%;
    }

    .infoContainer{
        flex-direction: column;
    }

    .scuff{
        display: none;
    }
}

/*
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/
  
.container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between stacked boxes */
}

.content-box {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: auto; /* Allow box height to adjust based on content */
    overflow: hidden; /* Hide content that exceeds box dimensions */
}

.content-box img {
    max-width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0; /* Rounded top corners */
    margin-bottom: 10px;
}

.content-box p {
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    margin: 0; /* Remove default margin to prevent extra space */
    padding: 0; /* Remove default padding to prevent extra space */
}
