body {
    background-color: rgb(163, 138, 175);
    font-family: monospace;
    margin: 0;
}

/* MAIN WRAPPER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* HEADER */
h1 {
    font-size: 50px;
    margin: 1rem 0;
}

/* TEXT */
p {
    font-size: 30px;
    font-weight: bold;
    max-width: 600px;
    margin: 1rem 0;
}

/* BUTTON */
button {
    padding: 1rem 2rem;
    font-size: 2rem;
    border: none;
    border-radius: 15px;
    background-color: black;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    
    
}

/* BUTTON EFFECTS */
button:hover {
    color: rgb(119, 83, 119);
    transform: scale(1.05);
    box-shadow: 4px 5px rgb(119, 83, 119);
}

button:active {
  transform: scale(0.95);
}
