* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.phone-container {
    width: 100%;
    max-width: 414px;
    padding: 20px;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 812px;
    background-color: white;
    border-radius: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 12px solid #1a1a1a;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background-color: #1a1a1a;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 2;
}

.phone-content {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: white;
    overflow-y: auto;
    padding-top: 40px;
    box-sizing: border-box;
}

.phone-home-button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    z-index: 2;
} 