body {
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    /* Garante que o fundo cubra toda a altura da tela */
    margin: 0;
    /* Remove a margem padrão do body */

    display: flex;
    justify-content: center;
    align-items: center;

}

#container {
    width: 700px;
    margin-bottom: 300px;
    box-shadow: rgb(14, 21, 29) 0px 20px 30px -10px;
    background-color: rgba(134, 133, 133, 0.212);
    border-radius: 10px;
    text-align: center;
    padding-bottom: 30px;
    margin-top: 50px;
}

#title {
    text-align: center;
    font-family: "Alex Brush", cursive;
    font-size: 60px;
    font-weight: 500;
    font-style: normal;
    color: #ffffff;

}

.paragraphs {
    font-family: "Croissant One", serif;
    font-weight: 400;
    font-style: normal;
    align-items: center;
    font-size: 20px;
}

#button-1 {
    background-color: #44c767;
    border-radius: 13px;
    border: 3px solid #18ab29;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 17px;
    padding: 16px 11px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #2f6627;
}

#button-1:hover {
    background-color: #5cbf2a;
}

#button-1:active {
    position: relative;
    top: 1px;
}