
/* Universal Selector */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Body */
body,
html {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(169, 162, 162);
}

/* DIV Container */
.container {
    width: 550px;
    height: 180px;
    background-color: rgb(15, 15, 15);
    display: flex;
    justify-content: center;
    align-items: center;
    /* backdrop-filter: blur(40px); */
     
}

/* DIV Box */
#box h1 {
    color: aliceblue;
    font-size: 40px;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    
}

 

