

* {
  margin: 0;
  padding: 2px;
}

body {
    width: 500px;
    margin: auto;
    box-sizing: border-box;
}

section, article, header {
    display: flex;
    flex-direction: column;
}
.side-flex {
    display: flex;
    flex-direction: row;
}

article, #stunts {
    flex-grow: 1;
    margin: 1px 5px;
}


h2 {
    background: #5fb0a8;
    color: white;
    margin: 0 15px;
    position: relative;
    width: calc(100% - 30px);
}

h2::before {
    content: "";
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    height: 100%;
    width: 15px;
    display: block;
    position: absolute;
    top: 0;
    left: -15px;
    background: #5fb0a8;
}

h2::after {
    content: "";
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0% 100%);
    height: 100%;
    width: 15px;
    display: block;
    position: absolute;
    top: 0;
    right: -15px;
    background: #5fb0a8;
}
h1 {
    width: 205px;
}

.stats {
  position: relative;
}

.stats > div {
  font-size: 2em;
  border: 1px solid #5fb0a8;
  width: fit-content;
  padding: 5px 10px 10px;
  min-width: 34px;
  text-align: center;
  border-radius: 5px;
}

label {
  position: absolute;
  font-size: 10px;
  background: white;
  border: 1px solid #5fb0a8;
  border-radius: 5px;
  bottom: -5px;
  left: 0;
  display: block;
  right: 0;
  width: fit-content;
  margin: auto;
}

#circle {
    background: conic-gradient(#f15854 54%, #4d4d4d 0 74%, #5da5da 0 100%);
  border-radius: 50%;
  height: 150px;
  width: 150px;
  position: relative;
}
#circle > span {
    position: absolute;
}
.main-text {
    margin: 0 4px 10px;
}

.main-text p {
    text-indent: 2em;
}
footer {
    text-align: center;
    border-top: 1px solid #5fb0a8;
    width: 90%;
    margin: auto;
}
@media screen and (max-width:500px) {
    body {
        width: 100%;
    }
    header.side-flex, section.side-flex {
        flex-direction: column;
    }
    #title {
        margin: auto;
    }
    #id p {
        text-align: center;
    }
}