*,
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.main {
    display: flex;
    justify-content: center;
    padding: 200px 0;
    flex-direction: column;
    align-items: center;
}

.title {
    /* text-align: center; */
    margin-bottom: 50px;
}

.description {
    display: none;

    margin-bottom: 50px;
}

.button {
    padding: 10px;
    border-radius: 15px;
    border: 1px solid black;
    background-color: chartreuse;
    font-size: 16px;
    cursor: pointer;
    width: 150px;
    margin-right: 10px;
    outline: none;
}