@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

* {
    font-family: 'Roboto Mono', monospace;
    user-select: none;
}

html,
body {
    background-color: #071013;
    overflow: hidden;
}

main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo {
    width: 50%;
}

.building {
    margin-top: 20px;
}

.building h1 {
    color: white;
    transition: .3s ease-in-out font-size;
}

/* CRT */
.crt::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("./crt.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: "";
}

.crt::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 3px, 4.5px 100%;
    pointer-events: none;
}
@media screen and (max-width: 450px) {
    .building h1 {
        font-size: 1rem;
    }
}