@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.woff2') format('woff2'),
         url('fonts/Poppins-Regular.woff') format('woff'),
         url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.woff2') format('woff2'),
         url('fonts/Poppins-Bold.woff') format('woff'),
         url('fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #1e1e1e;
    text-align: center;
    padding: 20px;
    color: #d1d1d1;
}

.container {
    max-width: 600px;
    background: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #e5e5e5;
}

p {
    font-size: 18px;
    line-height: 1.8;
    color: #c4c4c4;
}

strong {
    color: #e5e5e5;
    font-weight: 600;
}

em {
    font-style: italic;
    font-size: 20px;
    color: #a8a8a8;
}

