@charset "utf-8";

:root {
    --glass: rgba(255, 255, 255, 0.2);
    --glass-med: rgba(100, 100, 100, 0.2);
    --glass-dark: rgba(30, 30, 30, 0.2);
    --shadow: var(--light);
    --lightest: rgb(175, 175, 175);
    --light: rgb(100, 100, 100);
    --medium: rgb(50, 50, 50);
    --darkesty: rgb(30, 30, 30);
    --deep: black;
    --accentgreen: #05DF72;
    --accentblue: dodgerblue;

    --bluramount: 2px;

    --borderthickness: 1px;
}

@keyframes background-anim {
    from {
        background-position: 0% 0%;
    }

    to {
        background-position: 0% 100%;
    }
}

@keyframes hueshift {
    from {
        filter: hue-rotate(0deg)
    }

    to {
        filter: hue-rotate(360deg)
    }
}

html {
    background-color: var(--deep);
    color: var(--lightest);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.indexNav {
    width: 50%;
    justify-self: center;
}

.indexNav a {
    font-size: 25px;
}

nav {
    color: var(--lightest);
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

nav a {
    color: var(--lightest);
    text-decoration: none;
    font-size: 20px;
    transition: .25s ease;
}

nav a:hover {
    color: var(--accentgreen);
    text-shadow: 0 0 10px var(--accentgreen);
}

body {
    position: relative;
    background-color: var(--deep);
    background-image: radial-gradient(var(--lightest) 1px, var(--deep) 1px);
    background-size: 40px 40px;
    animation: background-anim 60s linear infinite;
    margin: 0;
    min-height: 100vh;
}

/* .section {
    animation: background-hueshift 10s linear infinite;
} */

.logo {
    margin: 0;
    position: fixed 100%;
    text-align: center;
    font-size: 25vw;
    color: var(--accentgreen);
    text-shadow: 0 0 25px var(--accentgreen);
    animation: hueshift 5s linear infinite
}

h1 {
    color: var(--accentgreen);
    text-shadow: 0 0 10px var(--accentgreen);
}

h2 {
    color: var(--lightest);
    text-align: center;
}

h3 {
    color: var(--lightest);
    text-align: center;
}

hr {
    height: var(--borderthickness);
    background-color: var(--lightest);
    border: none;
}

header {
    margin: 0;
    padding: 0 40px;
    box-shadow: 0 50px 50px 50px var(--deep);
    background-color: var(--deep);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.pageTitle {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    gap: 20px;
}

.title {
    margin: 0;
    padding: 25px 0;
    box-shadow: 0 50px 50px 50px var(--deep);
    /* border-bottom: var(--borderthickness) solid var(--lightest); */
    background-color: var(--deep);
    /* backdrop-filter: blur(var(--bluramount)); */
}

.title h1 {
    margin: 0;
    text-align: center;
    font-size: 100px;
    color: var(--accentgreen);
    text-shadow: 0 0 10px var(--accentgreen);
}

.title h3 {
    margin: 1em 0;
    text-align: center;
    font-size: 20px;
    color: var(--light);
}

.title h2 {
    margin: 0;
    text-align: center;
    color: var(--lightest);
    font-size: 50px;
    color: var(--lightest);
}

.title ul {
    color: var(--light);
    font-size: 20px;
    display: flex;
    /* Makes the list container a flex container, aligning children horizontally */
    list-style: none;
    /* Removes bullets */
    padding: 0;
    /* Removes default padding/margin */
    margin: 0 20% 0;
    justify-content: space-around;
    /* Distributes space between items (optional) */
}

.section {
    display: flex;
    width: 90%;
    /* padding: 0 5%; */
    margin: 25px 5%;
    gap: 5%;
}


.wideblock {
    background-color: var(--glass-med);
    backdrop-filter: blur(var(--bluramount));
    border: var(--borderthickness) solid;
    width: 100%;
    /* margin: auto; */
    border-radius: 25px;
    border-color: var(--accentgreen);
    box-shadow: 0 0 10px 0px var(--accentgreen);
}

.wideblock hr,
.card hr {
    background-color: var(--accentgreen);
    box-shadow: 0 0 10px 0px var(--accentgreen);

}

.wideblock h2 {
    margin: 15px 0;
}

.wideblock p,
.wideblock form,
.card p,
.card form {
    color: var(--lightest);
    padding: 0 15px 15px;
    font-size: 16px;
}

.responseContent {
    font-size: 16px;
    line-height: 1.6;
}

video {
    width: 95%;
    margin: 20px;
    display: flex;
    justify-self: center;
}

.bios {
    display: inline-block;
}

.bios .card {
    width: 50%;
    margin: 0 10% 25px;
    clear: both;
    overflow: hidden;
}

.bios .card:nth-of-type(even) {
    float: left;
    clear: both;
}

.bios .card:nth-of-type(odd) {
    float: right;
    clear: both;
}

.card {
    background-color: var(--glass-med);
    backdrop-filter: blur(var(--bluramount));
    border: var(--borderthickness) solid var(--accentgreen);
    box-shadow: 0 0 10px 0px var(--accentgreen);
    border-radius: 25px;
    width: 100%;
    /* margin: 0 2% 25px; */
}

.card .button {
    display: flex;
    justify-self: center;
}

#lyrics,
#songTitle,
#artist {
    width: 80%
}

.button,
#songTitle,
#lyrics,
#artist {
    background-color: var(--glass);
    backdrop-filter: blur(var(--bluramount));
    border: var(--borderthickness) solid var(--lightest);
    border-radius: 25px;
    color: white;
    padding: 10px
}

.button:hover,
#songTitle:hover,
#lyrics:hover,
#artist:hover {
    border-color: var(--accentgreen);
    box-shadow: 0 0 5px 0px var(--accentgreen);

}

.button {
    font-weight: bold;
}

.button:hover {
    color: var(--accentgreen)
}

label {
    display: block;
    margin-bottom: 10px;
}

.arc-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 15px 0;
}

.arc-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arc-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.arc-label {
    font-size: 12px;
    color: var(--lightest);
    font-weight: bold;
    text-align: center;
}

.arc-section {
    font-size: 10px;
    color: var(--light);
}

.arc-line {
    width: 35px;
    height: 2px;
    background: var(--light);
    align-self: center;
    margin-bottom: 22px;
    flex-shrink: 0;
}

label {
    display: block;
    margin-bottom: 10px;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 20px auto;
    border: 4px solid var(--glass);
    border-top: 4px solid var(--accentgreen);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#userMood {
    appearance: none;
    display: block;
    width: 83%;
    background-color: var(--glass);
    backdrop-filter: blur(var(--bluramount));
    border: var(--borderthickness) solid var(--lightest);
    border-radius: 25px;
    color: black;
    padding: 10px;
}

#userMood:hover {
    border-color: var(--accentgreen);
    box-shadow: 0 0 5px 0px var(--accentgreen);
}

#userMood:valid {
    color: white;
}

/* Optional option styling */
#userMood option {
    background-color: white;
    color: black;
}

.biopic {
    display: block;
    width: 200px;
    height: 200px;
    margin: auto;
    padding-top: 15px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}