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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    font-family: 'VT323', monospace;
    color: red;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.container {
    position: relative;
    width: 80vw;
    height: 100vh;
    overflow: hidden;
}

.title {
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.binary-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.binary-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: red;
    font-size: 0.6rem;
}

.image-container {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 40px;
    width: 100%;
    height: 100%;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.right-text {
    position: absolute;
    right: 10px;
    top: 20%;
    text-align: right;
    font-size: 0.7rem;
    line-height: 1.5;
    z-index: 10;
}

.bottom-bar {
    position: absolute;
    bottom: 25vh;
    left: 80px;
    
    display: flex;
    gap: 5px;
    z-index: 10;
}

.bar-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #666;
    border: 1px solid #333;
}

.bar-circle.active {
    background-color: #333;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.5); /* Blurry shadow */
}

.bar-circle.reactive {
    background-color: #292929;
}

.code-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.6rem;
    z-index: 10;
}
.mailto-button {
    position: fixed;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    
    display: inline-block;
    padding: 10px 20px;
    
    background-color: #444;
    color: white;
    
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    
    border-radius: 20px;
    
    transition: background-color 0.3s ease, transform 0.1s ease;
    
    z-index: 10;
    font-size: 0.8rem;
}

.mailto-button:hover {
    background-color: #555;
    transform: translateX(-50%) scale(1.05);
}

.mailto-button:active {
    background-color: #333;
    transform: translateX(-50%) scale(0.95);
}


@media screen and (min-width: 768px) {
    .title {
        font-size: 3.5rem;
        top: 20px;
        left: 40px;
    }

    .right-text {
        font-size: 1.2rem;
        right: 20px;
    }

    .binary-column {
        font-size: 0.8rem;
    }

    .bottom-bar {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }

    .bar-circle {
        width: 20px;
        height: 20px;
    }

    .code-number {
        font-size: 0.8rem;
        top: 20px;
        right: 20px;
    }
    .image-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }
}