body {
    margin: 0;
    padding: 0;
    background-color: #0066ff;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: space-between;
    align-items: center;
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 2px;
}
#nav{
    display: flex;
    position: relative;
    top: 0;
    background-color: transparent;
    width: 100%;
    height: 15%;
    justify-content: center;
    align-items: center;
}

#navbar{
    position: relative;
    margin-top: 30px;
}

#navbar a{
    padding: 20px;
    margin-right: 10px;
    text-decoration: none;
    color: white;
    border-radius: 35px;
}

#navbar a:hover{
    background-color: white;
    color:black;
    transition: linear 0.4s ;
    box-shadow: 10px 2px rgb(93, 106, 118);
}

header {
    color: rgb(255, 255, 255);
    height: 120px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin: 20px;
}

svg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -10;
}

.bottom-section {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100px;
}

.input-container {
    width: 100%;
    max-width: 650px;
    position: relative;

}

input {
    width: 100%;
    border: none;
    font-size: 20px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgb(38, 57, 77) 0 20px 30px -10px;
    box-sizing: border-box;
}

#submit-icon {
    position: absolute;
    top: 10px;
    right: 30px;
    cursor: pointer;
}

#paraOut {
    color: black;
    width: 60%;
    position: relative;
    background-color: white;
    border-radius: 10px;
    margin: 0px 0px 50px 0px;
    padding: 15px 27px;
    font-size: 16px;
    box-shadow: rgb(103, 111, 121) 0 20px 30px -10px;
    box-sizing: border-box;
    font-family: 'Libre Baskerville', serif;
    font-family: 'Roboto Slab', serif;
}