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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.screenshot-background {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('sc4.png') no-repeat center center/cover;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    color: #000;
    text-align: center;
}

/* Media query for responsive adjustments */
@media (max-width: 768px) {
    .content {
        padding: 20px;
    }
}
