/*#region: Frame*/
*, *:before, *:after {
    box-sizing: border-box;
}

body {
    padding: 0px;
    margin: 0px;
    background-image: url('../../images/resources/Random/0.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;  
    background-color: black;
    background-blend-mode: luminosity;
    background-size: cover;
}
/*#endregion*/

/*#region: Utilities*/
.redText {
    color: white;
    text-shadow: 0 0 5px #ff0101;
    font-family: 'Press Start 2P', cursive;
}
/*#endregion*/

/*#region: Ids & Classes*/
#about {
    display:flex;
    flex-direction: column;
    justify-content: center;
}

#title {
    text-align: center;
    margin: 20px 0px;
    animation: pulseRed 3s infinite;
}

#title h1 {
    text-transform: uppercase;
    font-size: clamp(1rem, -0.875rem + 8.333vw, 2rem);
}

#image {
    width: 80%;
    max-width: 900px;
    max-height: 40vh;
    margin: 0px auto;
    background-color: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 50px;
}

#message {
    color: white;
    font-size: 24px;
    font-family: 'Syncopate', sans-serif;
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
}

.return-button {
    margin: 50px auto;
    max-width: 50%;
    min-width: 280px;
    background: none;
    border: 4px solid;
    color: #ff0101;
    font-weight: 700;
    cursor: pointer;
    font-size: 20px;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}

.return-button::before,.return-button::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 4px;
    background:white;
    transform: skewX(50deg);
    transition: .4s linear;
}

.return-button::before {
    top: -4px;
    left: 10%;
}

.return-button::after {
    bottom: -4px;
    right: 10%;
}

.return-button:hover, .return-button:focus {
    color: #ff0101;
    text-decoration: none
}

.return-button:hover::before {
    left: 80%;
}

.return-button:hover::after {
    right: 80%;
}
/*#endregion*/

@keyframes pulseRed {
    0% {
        text-shadow:
        0 0 5px #ff0101;
    }

    30% {
        text-shadow:
        0 0 10px #ff0101,
        0 0 20px #ff0101;
    }

    70% {
        text-shadow:
        0 0 10px #ff0101,
        0 0 20px #ff0101;
    }

    100% {
        text-shadow:
        0 0 5px #ff0101;
    }
}