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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #18161c;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e8e8e8;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0 0 20px 0;
    color: #f5f5f5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    flex-shrink: 0;
}

.image-wrapper {
    flex: 1;
    background-image: url('hyewon.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    min-height: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .container {
        padding: 30px 15px;
    }
}
