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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow: hidden;
}

.page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    transform-origin: center center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #222;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 50px;
}

.button:hover {
    background-color: #333;
}

.image-placeholder {
    width: 300px;
    height: 200px;
    background-color: #f5f5f5;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 20px;
}


@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }
    
    .title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .button {
        padding: 12px 25px;
        margin-bottom: 40px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 150px;
    }
}
