:root{
    --fur: #2f2828;
    --pink: #f16a6a;
}

body, div{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

body {
    background: #ebe3be;
    overflow: hidden;
    max-height: 100vh;
}

.cat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    margin: 100px;
}

.ears {
    display: flex;
}

.ear {
    width: 0;
    height: 0;
    border-top: 135px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 120px solid var(--fur);
    position: relative;
    left: -60px;
    bottom: -35px;
    margin: 0 -30px 0 95px;
}

.earLeft {
    transform: rotateY(180deg);
}

.inner {
    width: 0;
    height: 0;
    border-top: 125px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 65px solid var(--pink);
    position: relative;
    left: -40px;
    bottom: 130px;
    margin: 0 -30px 0 95px;
}

.head {
    background: var(--fur);
    height:250px;
    width: 350px;
    border-radius: 80px;
    z-index: 10;
}

.eyes{
    display: flex;
    justify-content: space-between;
    width: 220px;
    margin: 60px 60px 0;
}

.eye {
background: #000;
width: 80px;
height: 80px;
border-radius: 50%;
border: 8px solid #d59208;
}

.nose {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 25px 25px 0 25px;
        border-color:var(--pink) transparent transparent transparent;
        margin: 0 145px;
} 

.body {
    background: var(--fur);
    height:350px;
    width: 350px;
    position: relative;
    border-radius:0% 100% 0% 100% / 100% 66% 34% 0% ;
    margin-left:100px;
    top: -50px;
}

.paws{
    display: flex;
    position: relative;
    margin-top: 310px;
}

.paw {
    background: var(--fur);
    width: 65px;
    height: 65px;
    margin-right: 50px;
    border-radius: 25px;
}

.tail {
    background: inherit;
    width: 160px;
    height: 50px;
    border-radius: 30px;
    z-index: 2;
    margin-top: -75px;
    margin-left: 325px;
    position: absolute;
}


main{
  padding: 0;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    font-size: 20px;
    background-color: #134e4e;
    padding: 1rem 6rem;
    display: flex;
    justify-content: space-around;
}

a:active, a:visited, a:link {
    color: white;
    text-decoration: none;
}
