html, body {
    overflow-x: hidden;
    margin: 0;
}

#landing-container {
    height: 80vh;
    max-height: 80vh;
    overflow: hidden;
}

#tech-tiger-logo {
    width: auto;
    height: 400px;
    animation: 4s infinite float ease-in-out;
}

#logo-layer {
    z-index: 1;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#floor {
    z-index: -1;
    position: absolute;
    transform: perspective(1000px) rotateX(80deg) scale(400%);
    overflow: hidden;
    bottom: 30%;
}

#shadow-container {
    position: fixed;
    display: flex;
    justify-content: center;
    z-index: 3;
    width: 100%;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

#shadow {
    height: 20px;
    width: 50px;
    background-color: black;
    border-radius: 50%;
    filter: blur(4px);
    animation: 4s infinite float-shadow ease-in-out;
    rotate: -30deg;
    opacity: 0.5;
}

#checkerboard-image {
    height: 300px;
    width: 100vw;
    background-image: url("https://prince-web-assets.s3.us-east-1.amazonaws.com/tech.dailyprincetonian.com/checkerboard.png");
    background-repeat: repeat-x;
    opacity: 0.5;
    animation: 100s infinite ticker linear;
    image-rendering: pixelated;
}

#checkerboard-gradient {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(255, 220, 70, 0.5) 0%, rgba(250, 110, 150, 0.5), rgba(255, 255, 255, 0.9) 30%,  rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.ticker-text {
    font-size: 25pt;
    top: 0;
    left: 0;
    white-space: nowrap;
    font-family: minion-pro, serif;
    font-weight: bold;
    font-style: italic;
    position: absolute;
    animation: 25s infinite ticker-text linear;
}

#ticker {
    height: 30vh;
    position: relative;
    overflow: hidden;
    color: black;
    text-decoration: none;
}

#ticker-2 {
    position: relative;
    z-index: -1;
    top: 0.3%;
    color:  rgba(250, 110, 150, 1)
}

@keyframes ticker {
    0% { background-position: top right; }
    100% { background-position: top left; }
}

@keyframes ticker-text {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-1330px);
    }
}

@keyframes float {
    0% { transform: translateY(0);}
    50% { transform: translateY(-20px);}
    100% { transform: translateY(0);}
}

@keyframes float-shadow {
    0% { transform: scale(100%);}
    50% { transform: scale(80%);}
    100% { transform: scale(100%);}
}


#info-container {
    background-color: white;
    padding-top: 30px;
}

#info-container-text {
    margin: 30px;
    font-size: 20pt;
    font-family: minion-pro;
    max-width: 600px;
}
