* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.room-header {
        text-align: center;
        font-size: 3rem;
        font-weight: bolder;
        color: #fba506;
        margin-top: 15px;
        margin-bottom: 50px;
    }

.room-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 350px);
    grid-template-rows: 300px 300px ;
    gap: 20px;
    justify-content: center;
    padding: 25px;
    
}

.room-container .rooms {
    border-radius: 5px;
    /*padding-bottom: 10px;*/
}

.room-container .rooms img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 2px 4px 5px gray;
}

h3 {
    color: orange;
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 700;
}
.room-image {
    position: relative;
}

.content-section {
    display: block;
    
}

.view-room {
    padding: 10px;
    margin-bottom: 10px;
    display: none;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}
.room-image::after, .room-image::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), transparent 90%, blue, orange);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 4px;
    border-radius: 5px;
    animation: 10s spin linear infinite;
}

.room-image::before {
    filter: blur(15px);
    opacity: 0.6;
}

.download-text {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    text-decoration: none;
}

.building-text {
    font-size: 2rem;
    color: blue;
    font-weight: 600;
}

@keyframes spin {
    from {
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
}
