/*--
Name: Steve Foss
Page Name:  Jump Page CSS Style Sheet
Date: March 15, 2026
 
 /* CSS Document */

.course h2 {
    animation: rollingPulse 2s linear infinite;
    display: inline-block;
}

@keyframes rollingPulse {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    20% {
        opacity: 0.7;
        transform: scale(1.1) rotate(5deg);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2) rotate(-5deg);
    }

    80% {
        opacity: 0.7;
        transform: scale(1.1) rotate(5deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

h3.fossarino-productions {
    margin: 10px 15px;
    text-align: center;
    text-shadow: gray 1px 1px 2px, white 0 0 15px, white 0 0 5px;
    animation: textShadowFade 3s ease-in-out infinite;
}

.hover-container {
    display: inline-block;
    position: relative;
}

.explosive-text {

    color: #fff;
    letter-spacing: 0.1em;
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease-out;
}

.explosive-text:hover {
    transform: scale(1.1);
}

.explosive-text:hover::before,
.explosive-text:hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: burst 0.8s ease-out forwards;
}

.explosive-text:hover::before {
    background: radial-gradient(circle, rgba(255, 0, 150, 0.6), transparent);
    z-index: -1;
}

.explosive-text:hover::after {
    background: radial-gradient(circle, rgba(0, 200, 255, 0.6), transparent);
    z-index: -2;
}

@keyframes burst {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    70% {
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes textShadowFade {
    0% {
        text-shadow: none;
    }

    20% {
        text-shadow: gray 1px 1px 2px, white 0 0 15px, white 0 0 5px;
    }

    80% {
        text-shadow: gray 1px 1px 2px, white 0 0 15px, white 0 0 5px;
    }

    100% {
        text-shadow: none;
    }
}

article {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px;
    padding: 10px;
    border: 2px solid white;
    border-radius: 5px;
    background-color: #333;

}

figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px;
    border: 2px solid white;
    border-radius: 5px;
    background-color: #333;

}

section {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    margin: 20px;
    border: 2px solid white;
    border-radius: 5px;
    background-color: #333;

}

section h2 {
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;

}

hr {
    width: 80%;
    border: 1px solid white;
    margin: 20px 15px;
    float: center;
}

img {
    width: 50%;
    height: 400px;
    object-fit: scale-down;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 10px;
    margin: 40px;
    border: 2px solid black;
    border-radius: 50%;
    box-shadow: 10px 10px 15px grey;
}

p {
    margin: 10px 15px;
    text-align: center;
    font-size: 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1px 5px;

    border: 2px solid white;
    border-radius: 8px;


}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 1px 5px;

    border: 2px solid white;
    border-radius: 8px;
}

footer p {
    font-size: 10px;
    font-style: italic;
    color: grey;
    text-align: center;
    max-width: 400px;
}

.about a {
    color: rgb(248, 244, 244);
    text-decoration: underline;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px 0 black, -2px -2px 0 black, 2px -2px 0 black, -2px 2px 0 black;
}

.about a:hover {
    color: white;
    text-decoration: underline;
    text-shadow: 2px 2px 0 rgb(170, 9, 211);
}

.course2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    border: 2px solid white;
    padding: 10px;
    border-radius: 5px;
}

.email a {
    color: rgb(146, 146, 146);
    text-decoration: none;
}

.email a:hover {
    color: white;
    text-decoration: underline;
    font-size: 20px;
}

.email {
    font-size: 10px;
    padding: 10px;
    margin: 10px;
    border: 2px solid white;
    border-radius: 5px;
}

.name {
    padding: 10px;
    border-radius: 5px;
}

.thoughts p {
    margin: 10px 15px;
    text-align: center;
    font-size: 25px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    text-shadow: white 1px 1px 2px, white 0 0 15px, white 0 0 5px;
    animation: thoughtsPulse 8s ease-in-out infinite;
}

@keyframes thoughtsPulse {
    0% {
        text-shadow: white 1px 1px 2px, white 0 0 15px, white 0 0 5px;
    }
    50% {
        text-shadow: none;
    }
    100% {
        text-shadow: white 1px 1px 2px, white 0 0 15px, white 0 0 5px;
    }
}

.thoughts {
    background-color: #333;
    width: 60%;
    text-align: center;
    margin: 20px;
    padding: 10px;
    border: 2px solid white;
    border-radius: 5px;
    font-size: 18px;
}

.thoughts a {
    color: rgb(253, 252, 252);
    text-decoration: underline;
}

.thoughts a:hover {
    color: white;
    text-decoration: underline;
    font-size: 23px;
}

@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    section {
        text-align: center;
        align-items: center;
    }

    img {
        width: 80%;
        height: auto;
    }

    .thoughts {
        width: 90%;
    }
}