@import url('https://fonts.googleapis.com/css2?family=Basis+Grotesque+Pro:wght@400;700&display=swap');

body {
    font-family: "Basis Grotesque Pro", system-ui, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}



h1 {
    color: #333;
}

button {
    background-color: #009CDE;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #006fde;
}

.logo {
    display: block;
    margin: 0 auto;
    height: 35px;
}