html, body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bg {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.main {
    height: fit-content;
    width: 60%;
    max-width: 100%;
}

.content {
    position: relative;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 18px;
    flex-wrap: wrap;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    box-shadow: 1px -1px 1px rgba(100,100,100,0.4);
    border-radius: 15px;
    padding: 25px;
}