body{
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

.background{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url("../assets/background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.content{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background:transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.content::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background:black;
    opacity: 0.4;
}


h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}
p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
}
.footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: whitesmoke;
}