body {
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #000000;
    background-size: cover;
    background-position: center center;
}

p,
a {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    font-family: Courier, monospace;
    font-smooth: antialiased;
    margin: 0.8em 0;
    font-size: 18px;
    color: rgb(254, 253, 252);
}

.ghost,
.glitch {
    opacity: 0.25;
}

#message {
    margin-left: -300px;
    margin-top: -130px;
    position: absolute;
    height: 260px;
    width: 600px;
    left: 50%;
    top: 50%;
}

#animate {
    text-shadow: 0 0 8px rgba(209, 194, 165, 0.1);
    position: absolute;
    color: #4f4228;
    bottom: 0;
}

#container {
    background: -webkit-radial-gradient(50% 50%, ellipse, #000000 0%, #000000 75%, #000000 100%);
    background: -moz-radial-gradient(50% 50%, ellipse, #000000 0%, #000000 75%, #000000 100%);
    position: relative;
    height: 0;
    width: 0;
    left: 900px;
    top: 250px;
}

#container:before {
    pointer-events: none;
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    top: 0;
}


/* navigation */

nav {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-left: 10%;
    padding-right: 10%;
    position: relative;
}

.logo {
    color: white;
    font-size: 28px;
}

span {
    color: #B2AC88;
}

nav ul li {
    color: white;
    list-style-type: none;
    display: inline-block;
    align-items: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: .4s;
}

nav ul li a:hover {
    transform: scale(1.3);
    cursor: pointer;
    color: red;
}

.suscribe {
    padding: 20px 16px;
    text-decoration: none;
    font-size: 17px;
    color: white;
    font-weight: bold;
    font-size: 17px;
    transition: .4s;
    left: 20;
    position: relative;
    left: 30px;
    top: -16px;
}

.suscribe:hover {
    transform: scale(1.3);
    cursor: pointer;
    color: red;
}