body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
}

.desktop-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

img {
    transition: transform 0.1s;
    max-width: 70%;
    max-height: 70%;
}

@media (min-width: 601px) {
    .mobile-content {
        display: none;
    }
}

/* mobile */
@media (max-width: 600px) {
    .desktop-content {
        display: none;
    }

    .mobile-content {
        color: transparent;
        animation: textFadeIn 3s forwards;
        font-family: 'Courier New', monospace;
        text-align: center;
        padding: 20px;
    }

    .mobile-content a {
        color: transparent;
        text-decoration: none;
        animation: textFadeIn 3s forwards;
    }
    
    .mobile-content a:link, 
    .mobile-content a:visited, 
    .mobile-content a:hover, 
    .mobile-content a:active {
        color: transparent;
        text-decoration: none;
    }

    @keyframes textFadeIn {
        to {
            color: white;
        }
    }
}


