:root {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    --primary-color: #141313;
    --second-color: #323693;
    --third-color: #EE712E;
    --fourth-color: #2F2F2F;
    --fith-color: #0018C8;
    --sixth-color: #464646;
    --seventh-color:#BCBBBB;
    --eighth-color:#707070;
    --ninth-color:#F2F2F2;
    --tenth-color:#3236939F;
}
body{
    max-width: 100%;
    overflow-x: hidden;
}
.full-screen{
    margin-top: 10%;
}
.container {
    display: block;
    margin: auto;
    align-content: center;
    justify-content: center;
    text-align: center;
}
.title{
    font-size: 2em;
    font-weight: 500;
    color: rgb(40, 34, 34);
    margin-bottom: 20px;
}
.sub-text{
    font-size: 1.3em;
    font-weight: 300;
    color: var(--fourth-color);
    padding: 0 10px 0 10px;
}
.hello {
    font-size: 12em;
    font-weight: 700;
    color: var(--fith-color);
}
.eye {
    background: #fff;
    border: 3px solid var(--fith-color);
    border-radius: 50%;
    display: inline-block;
    height: 140px;
    position: relative;
    width: 140px;
}
.eye::after {
    background:var(--third-color);
    border-radius: 50%;
    bottom: 56.1px;
    content: ' ';
    height: 33px;
    position: absolute;
    right: 33px;
    width: 33px;
}
.links{
    margin-top: 50px;
}
.links>a {
    text-decoration: none;
    background-color: var(--fith-color);
    color: var(--ninth-color);
    font-size: 1.2em;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 10px;
}
.links>a:hover {
    background-color: var(--third-color);
    color: var(--ninth-color);
}
.blob {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vmax;
    z-index: -1;
    animation: move 10s ease-in-out infinite;
    transform-origin: 50% 50%;
}
@keyframes move {
    0%   { transform: scale(1)   translate(10px, -30px); }
    38%  { transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg); }
    40%  { transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg); }
    78%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg); }
    80%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg); }
    100% { transform: scale(1)   translate(10px, -30px); }
}
@media screen and (min-width: 0px) and (max-width: 599px){
    .title{
        font-size: 1em;
    }
    .hello {
        font-size: 5em;
    }
    .sub-text{
        font-size: 1em;
    }
    .eye {
        height: 65px;
        width: 65px;
    }
    .eye::after {
        bottom: 17px;
        height: 13px;
        right: 13px;
        width: 13px;
    }
    .links>a {
        font-size: 1em;
    }
}
@media screen and (min-width: 599px) and (max-width: 960px){
    .title{
        font-size: 1.2em;
    }
    .hello {
        font-size: 6em;
    }
    .sub-text{
        font-size: 1.2em;
    }
    .eye {
        height: 65px;
        width: 65px;
    }
    .eye::after {
        bottom: 17px;
        height: 13px;
        right: 13px;
        width: 13px;
    }
    .links>a {
        font-size: 1em;
    }
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
    .title{
        font-size: 1.3em;
    }
    .hello {
        font-size: 7em;
    }
    .sub-text{
        font-size: 1.2em;
    }
    .eye {
        height: 85px;
        width: 85px;
    }
    .eye::after {
        bottom: 27px;
        height: 23px;
        right: 23px;
        width: 23px;
    }
    a {
        font-size: 1em;
    }
}