body {
    margin: 0;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: large;
    background-image: url('https://images.pexels.com/photos/906097/pexels-photo-906097.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-attachment: fixed;
    box-sizing: border-box;
}

.header-yoga {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
}

.Navigation a {
    position: relative;
    font-size: x-large;
    color: black;
    font-family: cambria;
    text-decoration: none;
    font-weight: 500;
    margin-left: 50px;
}

.Navigation a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: black;
    border-radius: 5px;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transition: transform .4s;
}

.Navigation a:hover {
    color: yellow;
    outline: none;
        
}

.Navigation a:hover::after {
    transform: scaleX(1);
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 5fr));
    gap: 20px;
    background-color: transparent;
}

.yoga {
    background-color: rgba(216, 21, 21, 0.1);
    backdrop-filter: blur(5px);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column; 
    border-radius: 5px;
    padding: 0px;
    color: black;
    font-family: Cambria;
    font-weight: 500px;
    align-items: center;
    justify-content: center;
    text-align: center  ;
}

.yoga img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
}

.yoga h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    justify-content: center;
}

.yoga p {
    font-size: 1rem;
    margin-bottom: 0;
    padding: 10px;
}

.about-yoga {
    width: 100%;
    color: white;
    padding: 10px;
    font-family: Cambria;
}

.about-yoga h1 {
    display: flex;
    color: black; 
}

.about-yoga p {
    padding: 10px;
    justify-content: center;
    text-align: center;
    color: black;
    font-weight: 500px;
    font-family: Cambria;
    font-size: x-large;
}