body {
    background-color: #0079b5;
    background-repeat: repeat;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    cursor: url("assets/lowCursor.9f21976e1d64.png"), auto;
}

* {
    cursor: url("assets/lowCursor.9f21976e1d64.png"), auto;
}

a {
    cursor: url("assets/point.9fa83b731dcd.png"), pointer;
}

.old-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 120px;
    height: 100%;
    background: #c0c0c0;
    padding: 10px;
    box-sizing: border-box;
}

.main-content {
    margin-left: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content > img {
    float: left;
    margin-right: 20px;
}

.about-text img {
    float: none;
    display: inline;
    vertical-align: middle;
    margin: 0 5px;
}

.first-paragraph {
    overflow: hidden;
}

.et-container {
    position: fixed;
    width: 80px;
    height: 100px;
    z-index: 1000;
    pointer-events: none;
}

.et-container img {
    position: absolute;
    width: 100%;
    height: auto;
    image-rendering: pixelated;
}

.et-container .et-frame1 {
    animation: frame1-visibility 0.08s steps(1) infinite;
}

.et-container .et-frame2 {
    animation: frame2-visibility 0.08s steps(1) infinite;
}

@keyframes frame1-visibility {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}

@keyframes frame2-visibility {
    0%, 50% { opacity: 0; }
    50.01%, 100% { opacity: 1; }
}

.et-container.panicking {
    animation: panic 0.05s linear infinite;
}

@keyframes panic {
    0%, 100% { rotate: -8deg; }
    50% { rotate: 8deg; }
}

.about-text {
    font-size: 1.2rem;
    color: white;
    max-width: 500px;
}

.about-text b {
    color: rgb(248, 240, 0);
    font-size: 1.5rem;
    font-weight: normal;
    text-transform: uppercase;
}

.first-word-emphasis {
    color: rgb(255, 255, 255);
    font-size: 2rem;
    font-weight: normal;
    text-transform: uppercase;
}

.about-ridgewood {
    position: relative;
    max-width: 500px;
    background: gray;
    padding: 16px;
    border: 2px inset gray;
}

.exclamation-mark {
    position: absolute;
    top: 8px;
    right: 0px;
}

/* Mobile styles */
@media (max-width: 600px) {
    .old-nav {
        position: static;
        width: 100%;
        height: auto;
        padding: 8px;
        text-align: center;
        border-bottom: 2px outset;
    }
    
    .old-nav a {
        display: inline;
        margin: 0 8px;
    }
    
    .old-nav br {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
        padding: 10px;
    }
    
    .main-content > img {
        float: none;
        display: block;
        margin: 0 auto 15px;
        max-width: 100%;
    }
    
    .about-text {
        font-size: 1.3rem;
    }
    
    .about-text b {
        font-size: 1.6rem;
    }
    
    .first-word-emphasis {
        font-size: 2rem;
    }
    
    .about-text img {
        width: 60px;
    }

    .about-text .exclamation-mark {
        width: 32px;
    }
}

