html, body{
    margin: 0;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem; /*18px*/
    scroll-behavior: smooth;
}

a{
    color: #000000;
    text-decoration: none;
}

.header{
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
    box-sizing: border-box;
    padding: 20px 90px;
}

.header-inner{
    text-align: center;
}

.hi-last a{
    color: #FFFFFF;
}

.hi-last a:after{
    background: #FFFFFF;
}

.nav-item{
    display: inline-block;
    outline: none;
}

.nav-item:after{
    display: block;
    background: #000000;
    content: "";
    height: 2px;
    width: 0;
    transition: width .3s;
    border-radius: 1px;
    transform: translateX(-50%);
    margin-left: 50%;
}

.nav-item:hover:after, .nav-item:focus:after{
    width: 100%;
}

.logo{
    height: 40px;
    width: 100%;
}

.ellipse-blue{
    display: block;
    position: absolute;
    z-index: -1;
    top: -270px;
    right: -90px;
    background: #43A8FF;
    height: 400px;
    width: 400px;
    border-radius: 50%;
}

.content{
    padding: 0 95px;
    overflow: hidden;
}

.landing{
    position: relative;
    box-sizing: border-box;
    height: calc(100vh - 80px);
    padding: 120px 0;
}

.ellipse-red{
    display: block;
    position: absolute;
    z-index: -1;
    top: 40px;
    left: -215px;
    background: #FF4141;
    height: 800px;
    width: 800px;
    border-radius: 50%;
}

.headline{
    color: #FFFFFF;
    font-size: 93px;
    margin: 0;
}

.cta{
    color: #FF4141;
    background: #FFFFFF;
    display: inline-block;
    margin-top: 20px;
    padding: 16px 34px;
    border-radius: 0.6em;
    outline: none;
}

.cta:hover, .cta:focus{
    opacity: .9;
}

.about, .work, .contact{
    position: relative;
    box-sizing: border-box;
    min-height: calc(100vh - 80px);
    padding: 35px 0;
}

.section-headline{
    display: inline-block;
    color: #FFFFFF;
    margin: 0;
    font-size: 64px;
}

.about-text{
    position: absolute;
    right: 0;
    width: 50%;
    top: 90px;
}

.about-headline{
    font-size: 33px;
}

.about-paragraph{
    font-size: 20px;
    line-height: 37px;
}

.ellipse-green{
    display: block;
    position: absolute;
    z-index: -1;
    top: -150px;
    right: -630px;
    background: #42F833;
    height: 700px;
    width: 700px;
    border-radius: 50%;
}

.rotated{
    position: absolute;
    transform: rotate(-90deg);
    right: -90px;
    top: 150px;
}

.contact h1{
    margin-bottom: 50px;
}

.ellipse-pink{
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: -630px;
    background: #FF00F5;
    height: 1600px;
    width: 1600px;
    border-radius: 50%;
}

input[type="text"], input[type="email"], textarea{
    background: #FFFFFF;
    color: #FF00F5;
    border: none;
    width: 50%;
    height: 50px;
    margin-bottom: 15px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    border-radius: 0.6em;
    box-sizing: border-box;
    padding: 0 20px;
}

textarea{
    padding: 15px 20px;
    height: 170px;
    resize: none;
}