*{
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: rgb(255, 255, 255);
    border: 1px;
}
html  {
    height: 100%;
}
body {
    height: 100%;
    background: url(background.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
}
.glass-container {
    width: 1200px;
    height: 520px;
    background-color: rgba(153, 205, 255, 0.300);
    border-radius: 50px;
    padding: 30px 50px;
    backdrop-filter: blur(7px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 3px 3px 10px rgba(255, 255, 255, 0.5);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-family: poppins, sans-serif;
    font-size: 18px;
    text-align: justify;
    line-height: 185%;

}
h1 {
    font-size: 30px;
    color: white;
}