* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
}

#container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(34, 193, 195);
    background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
}

#titulo {
    margin-bottom: 40px;
    font-size: 25px;
    color: #000;
}

#container__secundario {
    width: 700px;
    padding: 30px 50px;
    background-color: #e5e5e5;
    border-radius: 10px;
    -webkit-box-shadow: 9px -7px 11px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 9px -7px 11px -2px rgba(0, 0, 0, 0.75);
    box-shadow: 9px -7px 11px -2px rgba(0, 0, 0, 0.75);
}

#container__input {
    width: 100%;
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

#container__input::before {
    content: '';
    position: absolute;
    width: 100%;
    border-top: 2px solid rgba(14, 13, 13, 0.4);
    margin-top: 70px;
    height: 10px;
    border-radius: 30px;
}

#container__inputtxt {
    outline: none;
    border: 1px solid #000;
    width: 80%;
    height: 40px;
    padding: 5px;
    border-radius: 10px;
}

#container__btn {
    width: 20%;
    outline: none;
    border: 1px solid #000;
    background-color: #37afb6;
    border-radius: 10px;
    margin-left: 5px;
    color: #000;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

#container__btn:hover {
    background-color: #23858a;
}

#container__palavra {
    color: #37afb6;
    font-size: 22px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

#container__significado {
    color: #000;
    font-style: italic;
    margin-bottom: 10px;
}

span {
    font-size: 20px;
    color: #37afb6;
}