* {
    padding: 0;
    border: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    color: black;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
main {
    width: 100%;
    min-height: 100vh;
    padding: 15px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
h1 {
    margin-bottom: 40px;
}
p {
    margin-bottom: 10px;
}
a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}
a:hover {
    color: black;
    text-decoration: underline;
}