body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode';
    background-color: #f1f4f8;
    font-size: 16px;
    position: relative;
    color: #143540;
}

.stack-menu-top {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-right: 5px;
}

.side-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-end;
    width: 100%;
}

.page {
    display: flex;
    flex-direction: row;
    justify-content: left;
}

@media only screen and (max-width: 768px) {
    .page {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
}

@media only screen and (max-width: 768px) {
    .stack-menu, .stack-menu-page {
        flex-direction: row;
        margin-top: 20px;
        position: sticky;
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .side-menu {
        flex-direction: row;
        margin-top: 20px;
        position: sticky;
        width: 100%;
    }
}

.card {
    width: 350px;
}

h1, h3, h5 {
    color: #286A80;
}

h2, h4, h6 {
    color: #3B9EBF;
}

a:link, a:visited {
    color: #3B9EBF;
}

a:hover, a:active {
    color: #47BEE6;
}

.btn {
    max-width: 100px;
}

.line {
    line-height: 2;
}

.pkp {
    text-decoration: none;
    color: #47BEE6;
}

hr.one {
    color: #286A80;
    height: 10px;
}

hr.two {
    color: #286A80;
    height: 30px;
}

.icons {
    display: flex;
    flex-direction: row;
    color: #3B9EBF;
    font-size: 3rem;
    justify-content: space-around;
    padding-bottom: 20px;
    padding-top: 10px;
}

.pname {
    font-family: "Sofia", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
}

.noto-color emoji-regular {
    font-family: "Noto Color Emoji", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  

@media only screen and (max-width: 768px) {
    .icons {
        align-items: center;
    }
}

.animate {
    position: relative;
    animation-name: hero;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-direction: alternate-reverse;
    transition-timing-function: ease-out;
}

@keyframes hero {
    0% {
        color: #143540;
    }
    25% {
        color: #3B9EBF;
    }
    50% {
        color: #47Bee6;
    }
    75% {
        color: #3B9EBF;
    }
    100% {
        color: #47BEE6;
    }
}

.animate2 {
    animation-name: spin;
    animation-duration: 1s;
    animation-iteration-count: 2;
    animation-direction: normal;
    animation-delay: 6s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate3 {
    animation-name: spin2;
    animation-duration: 1s;
    animation-iteration-count: 2;
    animation-direction: normal;
    animation-delay: 6s;
}

@keyframes spin2 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate4 {
    animation-name: spin3;
    animation-duration: 1s;
    animation-iteration-count: 2;
    animation-direction: normal;
    animation-delay: 6s;
}

@keyframes spin3 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate5 {
    animation-name: spin4;
    animation-duration: 1s;
    animation-iteration-count: 2;
    animation-direction: normal;
    animation-delay: 6s;
}

@keyframes spin4 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate6 {
    animation-name: spin5;
    animation-duration: 1s;
    animation-iteration-count: 2;
    animation-direction: normal;
    animation-delay: 6s;
}

@keyframes spin5 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.back {
    background-color: #f1f4f8;
}
