

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f5f8fa;
}

h1 {
    font-family: 'Poppins', Roboto, Arial, sans-serif;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2d3e50;
}

p {
    font-family: 'Poppins', Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #2d3e50;
}
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 20px;
}

.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 18px;
    font: 'Poppins', Roboto, Arial, sans-serif;
    cursor: pointer;
    user-select: none;
    transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
    background: #007a3e;
    color: #fff;
    margin-top: 30px;
}

.btn:hover,
.btn:active {
    background: #006633;
}
