* {
    padding: 0;
    margin: 0;
}

.container{
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-image: url(https://source.unsplash.com/b5JksapY8pM/2400x1600);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Inter';
    color: #fff;
}

#warn{
    margin-bottom: 30px;
    letter-spacing: 1px;
    font: 16px;
}

#message-box{
    background: navy;
    color: aliceblue;
    text-align: center;
    width: 30%;
    border-radius: 20px;
    background: rgb(0, 0, 0, 0.8);
    border: solid 1px #000;
}

#header{
    height: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#message{
    flex: 1;
    font-size: larger;
    letter-spacing: 1px;
}

#content{
    height: 200px;
    padding: 10px;
    display: none;
    font-size: 20px;
    letter-spacing: 1px;
}

#close{
    cursor: pointer;
    font-size: 30px;
}

#close:hover{
    color: darkgrey;

}
