@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #030200;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
}

* {
    text-decoration: none;
}
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.back-button {
    position: absolute;
    top: 0;
    padding: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    /* give it a black shadow or something that you will see it better on a black background */
    text-shadow: 0 0 5px black;
}