/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    background-color: black;
    color: white;
    font-family: "Conv_PrintChar21";
    overflow: hidden;
}
.fixed-bottom-right {
    position: fixed; /* Positions relative to the browser viewport */
    bottom: 0;
    right: 0;
    padding: 10px;
    color: black;
    background-color: #f00cd1;
}
.bound {
    color: #f00cd1;
    background-color: black;
}
p {
    background-color: black;
    color: #f00cd1;
}
.top-left {
    transform: rotate(90deg);
    transform-origin: left bottom;
    color: white;
    background-color: #f00cd1;
    position: fixed;
    top: 0;
    left: 0;
    font-family: "Verdana";
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    z-index: 3;
}
.center {
    position: relative;
    text-align: center;
    font-size: 20px;
    top: 10px;
    z-index: 5;
}
.top-right {
    position: fixed;
    top: 20px;
    right: 20px;
    font-family: "Conv_PrintChar21";
    font-size: 20px;
    text-align: right;
    z-index: 4;
}
.top-right-text {
    position: fixed;
    top: 0;
    right: 0;
    font-family: "Courier New", monospace;
    font-size: 90pt;
    line-height: 0.8;
}
.top-left-text {
    position: fixed;
    top: 20px;
    left: 30px;
    font-family: "Conv_PrintChar21";
    font-size: 20px;
    text-align: left;
    z-index: 4;
}
.giant-v {
    position: fixed;
    transform: rotate(30deg);
    top: -1000px;
    right: 0;
    font-family: Verdana;
    font-size: 2000pt;
    z-index: -2;
}
.listening-block {
    z-index: -1;
}
.blink {
    animation: 1s infinite blink-animation;
}

@keyframes blink-animation {
    0%,
    50% {
        opacity: 0;
    }
    51%,
    100% {
        opacity: 1;
    }
}
.indent100 {
    position: fixed;
    left: 60px;
    text-align: right;
    z-index: 3;
}
.indent100delay {
    position: fixed;
    left: 50px;
    top: 30px;
    text-align: right;
    opacity: 0.7;
    z-index: 2;
}
.linksright {
    text-align: right;
    position: fixed;
    right: 10px;
    top: 80px;
}
.linksrightdelay {
    text-align: right;
    position: fixed;
    right: 30px;
    top: 88px;
    opacity: 0.5;
    z-index: -1;
}
.linksleft {
    text-align: left;
    position: fixed;
    left: 60px;
    top: 200px;
}
.linksleftdelay {
    text-align: left;
    position: fixed;
    left: 40px;
    top: 208px;
    opacity: 0.5;
    z-index: -1;
}
.newalign {
    margin: 0 0 0 20px;
}
.tag {
    background-color: #f00cd1;
}
.blu {
    color: #fe54e7;
    opacity: 1.4;
}
a {
    color: white;
    background-color: #f00cd1;
    text-decoration: none;
}
a:hover {
    color: #f00cd1;
    background-color: white;
}
.yearlink {
    color: white;
    background-color: transparent;
    text-decoration: none;
}
.yearlink:hover {
    color: #f00cd1;
}
.bottomborder {
    background-color: black;
    color: #f00cd1;
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
}
.cross {
    font-size: 500px;
    position: fixed;
    top: 100px;
    color: #f00cd1;
    opacity: 0.7;
    z-index: 3;
}
.nomar {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}
.albums {
    font-weight: bold;

    position: fixed;
    top: 150px;
    left: 200px;
    right: 200px;
}
.title {
    font-size: 55px;
    width: 500px;
    padding: 30px;
    border: 4px dashed white;
}
.bgtext {
    opacity: 0.3;
    position: FIXED;
    z-index: -1;
    font-size: 20px;
    line-height: 1.4;
}
.list {
    line-height: 1.5;
}