* {
    padding: 0;
    margin: 0;
}

/* body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  } */
  .rotate-shadows {
    width: 220px;
    height: 220px;
    position: relative;
    top: 30px;
  }
  .rotate-shadows:after,
  .rotate-shadows:before {
    content: "";
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
  }
  .rotate-shadows:before {
    box-shadow: inset 0 20px 0 rgba(0, 250, 250, 0.6), inset 20px 0 0 rgba(0, 200, 200, 0.6), inset 0 -20px 0 rgba(0, 150, 200, 0.6), inset -20px 0 0 rgba(0, 200, 250, 0.6);
    animation: rotate-before 2s -0.5s linear infinite;
  }
  .rotate-shadows:after {
    box-shadow: inset 0 20px 0 rgba(250, 250, 0, 0.6), inset 20px 0 0 rgba(250, 200, 0, 0.6), inset 0 -20px 0 rgba(250, 150, 0, 0.6), inset -20px 0 0 rgba(250, 100, 0, 0.6);
    animation: rotate-after 2s -0.5s linear infinite;
  }
  @keyframes rotate-after {
    0% {transform: rotateZ(0deg) scaleX(1) scaleY(1);}
    50% {transform: rotateZ(180deg) scaleX(0.82) scaleY(0.95);}
    100% {transform: rotateZ(360deg) scaleX(1) scaleY(1);}
  }
  @keyframes rotate-before {
    0% {transform: rotateZ(0deg) scaleX(1) scaleY(1);}
    50% {transform: rotateZ(-180deg) scaleX(0.95) scaleY(0.85);}
    100% {transform: rotateZ(-360deg) scaleX(1) scaleY(1);}
  }

/* _______CONTENT_______ */

.top-part {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 300px;
    background: rgb(0,54,3);
    background: linear-gradient(0deg, rgba(0,54,3,1) 26%, rgba(14,124,0,1) 57%, rgba(11,179,0,1) 100%);
}

.about-me {
    box-shadow: 0 510px 6px 520px black;
    background-image: url(./4343er7i68tgy.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%; 
    height: 500px;
}

.about-me-text {
    width: 34.6%;
    display: block;
    position: relative;
    left: 60%; 
    top: 100px;
    color: white;
    font-family: 'Caveat', cursive;
    font-size: 68px;
}

.about-me-text::before {
    position: relative;
    right: 143%;
    bottom: 60px;
    content: "";
    display: block;
    width: 300px;
    height: 300px;
    background-image: url(./myphoto.jpg);
    background-size: contain;
    width: 244px;
     height: 244px;
     border: 5px solid rgba(0,54,3,1); border-radius: 160px 160px 160px 160px; -webkit-border-radius: 160px 160px 160px 160px; -moz-border-radius: 160px 160px 160px 160px;
}

.quote {
    width: 100%;
    height: 300px;
    background: rgb(0,54,3);
    background: linear-gradient(180deg, rgba(0,54,3,1) 26%, rgba(14,124,0,1) 57%, rgba(11,179,0,1) 100%);
}

.quote-text {
    color: white;
    padding-right: 70px;
    padding-left: 90px;
position: relative;
top: 50px;
    margin: 0 auto;
    display: block;
 background-color: green;
    font-size: 44px;
width: 54%; 
clip-path: polygon(0% 1%, 9% 35%, 0% 51%, 9% 77%, 0% 100%, 100% 100%, 91% 80%, 100% 50%, 91% 35%, 100% 0%);
/* border: 20px solid transparent;
border-image: 10 repeating-linear-gradient(45deg, #A7CECC, #A7CECC 10px, transparent 10px, transparent 20px, #F8463F 20px, #F8463F 30px,transparent 30px, transparent 40px); */
    font-family: 'Caveat', cursive;
}

/* _____TABLET____ */

@media (min-width: 480px) and (max-width: 800px) {

    .about-me-text {
        font-size: 58px;
    }

    .quote-text {
        font-size: 40px;
    }

}

/* ____PHONE____ */

@media (max-width: 480px) {

.about-me-text {
    font-size: 40px;
}

.about-me-text::before {
    margin: 0 auto;
}

.quote-text {
    top: 20px;
    padding: 10px;
    padding-top: 45px;
    height: 224px;
    font-size: 25px;
    clip-path: polygon(0% 0%, 25% 18%, 49% 0%, 69% 18%, 100% 0%, 100% 100%, 79% 81%, 53% 100%, 26% 85%, 0% 99%);
}

}