body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-icon {
    background: url('server.jpg') no-repeat;
    background-position: center;
    background-size: 100% auto;
    width: 60vw;
    height: 34.5vw;
    animation: breathing 20s infinite;
    box-shadow: 25px 25px 50px 50px black inset, -25px -25px 50px 50px black inset; 
}

.server-icon:hover {
    border-color: white;
}

@keyframes breathing {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.terminal {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
}

.cursor {
    display: inline-block;
    width: 10px;
    background-color: #0f0;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to {
        background-color: transparent;
    }
    50% {
        background-color: #0f0;
    }
}
