*{
    margin: 0;
    padding: 0;
}
.nav{
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
}

h1{
    padding: 20px;
}

.container{
    position: absolute;
    background: radial-gradient(circle, blue, red, green);
    bottom: 0;
    right: 0;
    left: 0;
    top: 77px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.status{
    background-color: aqua;
    width: 100%;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.title{
    font-weight: bold;
}

button{
    border: none;
    background-color: bisque;
    padding: 20px;
    border-radius: 12px;
}

button:hover{
    cursor: pointer;
    transform: scale(1.1);
    transition: all 0.5s ease;
}