html{
    width: 100%;
    height: 100%;
}
body{
    background-color: rgb(29, 226, 210);
    background-size: cover;
    font-family: "Lucida sans", sans-serif;
    color: rgb(255, 255, 255);
}

h1{
    background: rgb(250, 250, 250);
    width: 60%;
    border-radius: 5px;
    padding: 20px;
    font-size: 50px;
    color: black;
    text-decoration-line: underline;
}
h3{
    text-indent: 1rem;
    font-size: 32px;
}

button{
    background-color: rgb(251, 255, 22);
    margin: 10px;
    padding: 40px;
    width: 70%;
    height: 80%;
    border-radius: 10px;
    font-size: 30px;
    box-shadow: 3px 5px black;
}
button:hover{
    background-color: rgb(255, 217, 0) ; 
}

.modal{
    display: none;
    position: fixed;
    z-index: 1;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.modal-content{
    background-color: rgb(153, 0, 26);
    border-radius: 3px;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
}

.close{
    font-size: 2rem;
}
.close:hover,.close:focus{
    color: black;
    cursor: pointer;
}