/* Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
}

/* Main page */
.main {
    background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
    height: 100vh;
}

.title {
    padding-top: 100px;
    font-size: 3em;
}

.paths {
    margin-top: 100px;
}

.path {
    display: block;
    margin: 20px auto;
    padding: 15px 30px;
    width: 300px;
    text-decoration: none;
    color: white;
    border: 1px solid #00c6ff;
    border-radius: 10px;
    transition: 0.3s;
}

.path:hover {
    background: rgba(0, 198, 255, 0.3);
}

/* Flooded Regensburg style */
.flood {
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center/cover;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Dark water overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 60, 0.6);
}

/* Content box */
.content {
    position: relative;
    z-index: 2;
    top: 15%;
}

audio {
    margin-top: 20px;
}

/* Upload */
.upload {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

input[type="file"] {
    margin-top: 5px;
}

/* Back link */
.back {
    color: #00c6ff;
    text-decoration: none;
}
``