body {
    height: 100vh;
    margin: 0;
    background-color: #ffee83;
    background-image: linear-gradient(0deg, #ffee83 0%, #ff2525 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    font-size: 3.7em;
    font-weight: 200;
    text-align: center;
    margin: 0;
}

.duck {
    height: 400px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.head {
    height: 130px;
    width: 130px;
    background: #f6ff13;
    border-radius: 60px;
    position: absolute;
    top: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px -6px 14px 0px rgba(0, 0, 0, .47);
}
.eyes {
    display: flex;
}
.eye {
    height: 15px;
    width: 15px;
    background: #3e3e3e;
    border-radius: 50px;
    margin: 0 10px 15px;
}
.pupil {
    height: 4px;
    width: 4px;
    background: #fff;
    border-radius: 50px;
    margin: 2px;
}
.bill {
    width: 0;
    height: 0;
    border-radius: 100px;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #ffb733;
}
.body {
    height: 150px;
    width: 230px;
    background: #f6ff13;
    border-radius: 80px;
    box-shadow:0px 3px 13px 0px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wing {
    height: 45px;
    width: 75px;
    background: #f6ff13;
    border-radius: 50px;
    margin: -16px -15px 0;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.47);
}
