* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto';
    background: #ffffff;
    color: #2c2c2c;
    line-height: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 700px;
    width: 100%;
}

.content {
    text-align: center;
}

.content p {
    font-size: 1 rem;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }
    
    .content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
    }
    
    .content p {
        font-size: 1rem;
    }
}
