body {
    margin: 0;
    padding: 0;
    background-color: #030303;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
    color: antiquewhite;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh
}

h1 {
    font-size: 3rem;
    margin-bottom: 50px
}

.inputs {
    display: flex;
    width: 70vw;
    justify-content: space-around;
    align-items: center;
}

#name {
    width: 300px;
    height: 50px;
    border-radius: 30px;
    background-color: transparent;
    border-color: rgb(78, 78, 226);
    color: antiquewhite;
    font-size: 20px;
    padding-left: 25px;
}

#name:focus {
    outline: none;
}

#greet-btn {
    width: 150px;
    height: 50px;
    border-radius: 30px;
    background-color: rgb(78, 78, 226);
    color: antiquewhite;
    font-size: 24px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out
}

#greet-btn:hover {
    background-color: transparent;
    border: 2px solid rgb(78, 78, 226);
    color: rgb(78, 78, 226);
    letter-spacing: 0.1em;
}

#greet-btn:focus {
    outline: none;
}

#greeting {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: antiquewhite;
}


