* { margin:0;
    padding:0;
    box-sizing:border-box;
}

html {
    height:100%;

    background: #093028; 
background: -webkit-linear-gradient(to right, #237A57, #093028);  
background: linear-gradient(to right, #237A57, #093028); 


}

body {
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-family:'Poppins',sans-serif;
    background:transparent;
    position: relative;
    margin: auto;
}

.glass-container {
    width: 100%;
    height: auto;
    padding: 40px;
    border-radius:50px;


    background: rgba(255,255,255,0.07);

    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);


    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
        0 8px 32px 0 rgba(0,0,0,0.12),
        inset 0 0 20px rgba(255,255,255,0.15);

    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-size:18px;
    text-align:center;
    line-height:185%;
    text-shadow:0 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 150px;
}


h1 {
    margin-bottom:20px;
    font-size:32px;
    font-weight:700;
    color:#fff;
    text-shadow:0 2px 4px rgba(0,0,0,0.25);
}

.sub-glass-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.18);
   
}

.sub-glass-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}