*{
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Verdana, Geneva, Tahoma, sans-serif

}

nav{
    display: flex;
    justify-content: space-between;
    padding: 1.5% 10%;
    align-items: center;
    background-color: rgb(49, 49, 240);
    color: #fff;
}

nav h1{
    width: 50%;
}

nav ul{
    display: flex;
    list-style-type: none;
    width: 50%;
    column-gap: 10%;
}

section{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

input{
    padding: 10px;
    border-radius: 5px;
    outline: none;
    border: none;
    background-color: rgb(118, 177, 228);
    width: 30vw;
}

button{
    position: absolute;
    right: 30%;
    padding: 10px 20px;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    background-color: rgb(49, 49, 240);
    color: #fff;
}

.data{
    transform: translateY(20%);
    border: 2px solid rgb(49, 49, 240);
    padding: 3% 10%;
}