* {
    padding:    0%;
    margin:     0%;
}


body {
    display: flex;
    justify-content: flex-start; /* Align items to the top */
    align-items: center;         /* Center items horizontally */
    flex-direction: column;      /* Stack items vertically */
    height: 100vh;               /* Full viewport height */
    margin: 0;                   /* Remove default body margin */
    padding-top: 20px;           /* Optional: Add some padding from the top */
    background-color: aliceblue;
}

section {
    display: flex;
    flex-direction: column;
    text-align: center;
}

section p {
    margin-top: 10px;
}

button {
    padding-left:   5px;
    padding-right:  5px;
    padding-top:    0.5px;
    padding-bottom: 0.5px;
    background-color: darkgreen;
    box-shadow: none;
}