html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%;
}
@font-face {
    font-family: "PressStart2P";
    src: url("/Assets/Fonts/PressStart2P.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    color: #000;
    background-color: #151a2f;
 /* background-image: url("Assets/Images/background_web_02.png"); */
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.Pages {
    font-family: "PressStart2P";
    background-image: none;
    background-color: rgba(0, 0, 0, 0);
    overflow: visible;
    margin-left: 10px;
    width: 98%;
}
.Pages header h3 {
    color: #d1d1d1;
    background-image: none;
    background-color: rgba(0, 0, 0, 0);
}

.AboutMe p {
    margin-left: 10px;
    color: #fff;
    line-height: 1.5;
}
.AboutMe p b {
    font-weight: normal;
    color: #e7fa79
}
.AboutMe ul {
    color: #00a9dd;
    line-height: 1.4;
    font-size: 0.8em;
}
.AboutMe li::marker {
    color: #0077e7;
}

.Index header {
    display: flex;
    flex-flow: row;
    width: 100%;
    font-family: "PressStart2P", sans-serif;
    background-color: #CA4246;
    background-image: linear-gradient(
        45deg,
        #CA4246 5%,
        #E16541 5%,
        #E16541 10%,
        #F18F43 10%,
        #F18F43 15%,
        #8B9862 15%,
        #8B9862 20%,
        #476098 20%,
        #476098 30%,
        #476098 30%);
    background-size: 100%;
    background-repeat: repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-text-simple-animation-rev 0.75s ease forwards;
}

.Index header:hover {
    animation: rainbow-text-simple-animation 0.5s ease-in forwards;
}

.Index header a {
    text-decoration: none;
    color: #B603ED;
    flex-wrap: nowrap;
}
.Index header a img {
    border-radius: 50%;
}

.Index header p {
    width: auto;
    margin-left: auto;
    padding-right: 20px;
    flex-wrap: nowrap;
    line-height: 1.5;
    text-align: right;
}

.Index .title {
    width: 50%;
    margin-left: 0;
    padding-left: 5px;
    text-align: left;
    flex-wrap: nowrap;
}

@keyframes rainbow-text-simple-animation-rev {
    0% {
        background-size: 650%;
    }
    40% {
        background-size: 650%;
    }
    100% {
        background-size: 100%;
    }
}

@keyframes rainbow-text-simple-animation {
    0% {
        background-size: 100%;
    }
    80% {
        background-size: 650%;
    }
    100% {
        background-size: 650%;
    }
}

.Exmpl {
    display: flex;
    margin-top: 5px;
    width: 100%;
    justify-content: space-evenly;
}

.Exmpl button {
    border-radius: 50%;
}

.Exmpl img {
    padding: 5px;
    width: 50px;
    height: 50px;
}

.B1 {
    background: radial-gradient(gold, black);
}

.B2 {
    background: radial-gradient(silver, black);
}

.B3 {
    background: radial-gradient(green, black);
}

.Show {
    flex: 1; 
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
}

.Show iframe {
    width: 100%;
    height: 95%;
    border: none;
    display: block;
}

footer {
    width: 100%;
    height: auto;
    position: fixed;
    left: 0;
    bottom: 0;
}

footer a {
    font-size: 1vh;
    text-decoration: none;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
    font-family: "PressStart2P", sans-serif;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    header p, .title {
        width: 100%;
        text-align: center;
        padding: 5px 0;
        margin: 0;
    }
    .Exmpl img {
        width: 50px;
        height: 50px;
    }
}