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

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

body {
    background-color: purple;
    color: white;
    text-align: center;
    font-family: Georgia, serif;
}