body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative; /* Add this */
}

.background{
    background-image: url("/background.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
h1{
    color: white;
    font-size: 50px;
    z-index: 2;
}

.button{
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    /* margin-top: 10px; */
    text-align: center;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
}

@media screen and (max-width: 600px) {
    h1{
        font-size: 30px;
    }
    .button{
        font-size: 15px;
    }
    
}