html,body { min-height: 100%;}
body {
    background-color: rgba(143, 45, 78, 0.363);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    border: 0;
    font-size: 21px;
    padding-top: 30px;
}
p {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}

.drill {
    width: 20%;
    height: auto;
}
.drill img {
    width: 80%;
    height: auto;
}
.reverse { 
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1); 
    transform: scaleX(-1);
}


.main {
    width: 60%;
    height: auto;
    /*Temporary height
    height: 780px;*/
    background-color: rgb(206, 84, 84);
    border: 3px black solid;
}
h3 {
    margin-top: 5px;
    margin-bottom: 0px;
}
.title {
    text-align: center;
    color: white;
    border-bottom: 3px black solid;
    padding: 2px;
    font-size: 27px;
    font-weight: bold;
    text-shadow: 2px 1px 1px black;
}
.linkBox {
    display: flex;
    padding-left: 12px;
    padding-right: 12px;
    flex-direction: row;
    justify-content: space-around;
    color: rgb(253, 174, 198);
    font-size: 13px;
    font-weight: 550;
    border-bottom: 2px black solid;
    height: min-content;
}
.whole {
    height: 100%;
    height: max-content;
}
.textBox {
    padding: 1%;
}
.tetos {
    margin-top: 20px;
    bottom: 0;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tetos img:last-child { 
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1); 
    transform: scaleX(-1);
}

.emote {
    height: 2.5rem;
}


.compartiment {
    margin: 3px;
    margin-top: 20px;
    border: 10px double black;
}


.taters {
    position: fixed;
    bottom: 0;
    left: 1%;
}
.speed {
    animation: 3s linear 0s alternate speed forwards;
}

@keyframes speed {
    from {
      transform: translatex(100);
    }
    to {
      transform: translateX(110vw);
    }
  }