* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.image {
    width: 100%;
    height: 100vh;
    background: url('laptop.jpg') center/cover;
}

.content {
    width: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    padding: 3rem;
}

h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
}

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }
    
    .image, .content {
        width: 100%;
        height: 50vh;
    }
}