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

body {
    font-family: 'Arial', sans-serif;
    background-color:white;
    display: flex;
    justify-content: center;
    background-image: url("../public/logo.jpg");
    background-size: 900px;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: black;
}

.container {
    background-color:white;
    border: 3px solid #333333;
    box-shadow: 0 4px 8px rgba(17, 17, 17, 0.5);
    border-radius: 22px;
    padding: 20px;
    max-width: 400px;
    text-align: center;
    margin: 10px 0px;
}

h2 {
    color: red;
    margin: 0;
    font-size: 20px;
    line-height: 2.5;
}

p {
    color: #cccccc;
    line-height: 1.5;
}

h1 {
    color: red;
    font-size: small;
}