* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#web-body {
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    min-height: 200vh;
    position: relative;
    overflow-x: hidden;
}

#tower-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

#tower-image {
    width: 100%;
    height: 120vh;
    object-fit: cover;
    transition: none;
    display: block;
    margin-bottom: -4px;
}

#footer-space {
    position: relative;
    z-index: 20;
    height: 200vh;
}

#links-footer {
    position: absolute; 
    bottom: 0; 
    left: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 5vh; 
    color: rgba(255, 255, 255, 0.5);
    opacity: 1; 
}

#links-footer a {
    color: #fff;
    font-size: 2.5em;
    margin: 0 15px;
    text-decoration: none;
    opacity: 0.8;
}

#links-footer a:hover {
    opacity: 1;
}

#links-footer p {
    font-size: 0.7em;
    margin-top: 10px;
}
