@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body, html {
    height: 100%;
    margin: 0%;
    font-family: 'Share Tech Mono', monospace; 
    background-color: #464a48; /* 85% grey background */
}

.container {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.container img {
    max-width: 100%;
    height: auto;
}

.text-content {
    margin-top: 20px;
    color: aliceblue;
}

@media screen and (min-width: 200px) {
    .container img {
        max-width: 40%; /* Adjusts image size on larger screens */
    }
}
