.center {
    display: flex;
    justify-content: center;
}

.marquee {
    color: white;
    font-size: 14px;
    white-space: nowrap;
    overflow-x: hidden;
}
.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.eye{
    width: 50px;
    height: 50px;
    background: #fff;
    margin: 40px;
    border: 3px solid black;
    outline: 3px solid white;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    position: fixed;
    overflow-x: hidden  ;
}

.ball{
  width: 14px;
  height: 14px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 5px solid #333;
}

#bordertop {
    border: 2px solid black;
    border-radius: 8px;
    background: #a64242;
    background: linear-gradient(180deg,rgba(166, 66, 66, 1) 0%, rgba(79, 5, 5, 1) 26%, rgba(84, 19, 19, 1) 65%, rgba(51, 0, 0, 1) 100%);
    width: 56vw;
    height: 20px;
    min-width: 600px;
    position: fixed;
    margin-top: 210px;
}

#homepage_content {
    border: 1px hidden black;
    width: 55vw;
    height: 800px;
    min-width: 590px;
    position: fixed;
    margin-top: 240px;
}

#bordermiddle {
    border: 4px solid darkred;
    border-radius: 8px;
    background: #000000;
    padding: 20px;
    width: 28vw;
    height: 50vh;
    min-width: 300px;
    min-height: 300px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    
}

#borderleft {
    border: 4px solid darkred;
    border-radius: 8px;
    background: #000000;
    padding: 12px;
    width: 9vw;
    height: 55vh;
    min-width: 90px;
    min-height: 335px;  
    position: static;
    float: left;
}

#borderright {
    border: 4px solid darkred;
    border-radius: 8px;
    background: #000000;
    padding: 12px;
    width: 9vw;
    height: 55vh;
    min-width: 90px;
    min-height: 335px;  
    position: static;
    float: right;
}

.header {
    border: 2px solid black;
    border-radius: 8px;
    background: #a64242;
    background: linear-gradient(180deg,rgba(166, 66, 66, 1) 0%, rgba(79, 5, 5, 1) 26%, rgba(84, 19, 19, 1) 65%, rgba(51, 0, 0, 1) 100%);
    padding: 2px;
}

.greybutton {
    border: 2px solid black;
    border-radius: 8px;
    border-bottom-right-radius: 24px;
    background: #cfcfcf;
    background: linear-gradient(180deg,rgba(207, 207, 207, 1) 0%, rgba(99, 99, 99, 1) 26%, rgba(115, 115, 115, 1) 77%, rgba(74, 74, 74, 1) 100%);
    padding: 2px;
}

.greybutton:hover {
    border: 2px solid black;
    border-radius: 8px;
    border-bottom-right-radius: 24px;
    background: #636363;
    background: linear-gradient(180deg,rgba(99, 99, 99, 1) 0%, rgba(36, 36, 36, 1) 26%, rgba(46, 46, 46, 1) 78%, rgba(20, 20, 20, 1) 100%);
    padding: 2px;
    color: grey
}

.content {
    border: 4px solid darkred;
    border-radius: 8px;
    background: url(assets/tartan.jpg);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
    overflow: auto;
    font-family: MS Gothic;
    font-size: 2vh;
    
}

#profile {
    border: 4px solid darkred;
    border-radius: 8px;
    background-image: url(assets/profile.jpg);
    background-size: cover;
    width: 8vw;
    height: 8vw;
    min-width: 90px;
    min-height: 90px;
}

.blinkies {
    width: 10vw;
    height: 1.2vw;
    min-width: 75px;
    min-height: 10px;
    text-align: center;
}