body {
    background: #111;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: auto;
    text-align: center;
    position: relative;
    top: 30vh;
}

button {
    background: rgb(48, 122, 48);
    height: 50px;
    width:fit-content;
    margin: auto;
    padding: 1rem 4rem;
    border: none;
    border-radius: 0.5rem;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

button:active {
    opacity: 90%;
    background: rgb(125, 197, 125);
    color: black;
}

p {
    font-size: 0.5rem;
    color: skyblue;
}