/* Add your CSS styling here */
body {
	
    background-image: url('SEGAMW.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('TEEMO.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    overflow: hidden; /* Hide horizontal scrollbar */
}

main {
    background-color: rgba(0, 0, 0, 0.7); 
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    text-align: center; 
    transform: scale(0.95); 
    opacity: 0.8; 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

main:hover {
    transform: scale(1); 
    opacity: 1; 
}

.header {
    background-color: #121212; 
    color: #FFFFFF; 
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.footer {
    background-color: #121212; 
    color: #FFFFFF; 
    text-align: center;
    padding: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Style for the futuristic buttons */

.difficulty-button {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 10px 5px;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.difficulty-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #3498db;
    z-index: -1;
    transition: height 0.3s ease;
}

.difficulty-button:hover::before {
    height: 100%;
}

.difficulty-button:hover {
    background-color: #3498db;
    color: white;
    transform: scale(1.05);
}


/* Style for the KDA form */
.kda-form {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.kda-input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #3498db;
    color: white;
    font-size: 18px;
    padding: 10px;
    margin: 10px;
    text-align: center;
    width: 60px;
}

/* Style for the exercise and champion information */
.exercise-info,
.champion-info {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.5s ease, transform 0.5s ease; 
}

/* Animate the info sections on display */
.exercise-info.active,
.champion-info.active {
    opacity: 1;
    transform: translateY(0);
}

/* Style for the "Your Exercises" section */
section#exercise-counts {
    background-color: rgba(0, 0, 255, 0.5); 
    color: white; /* Text color */
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;

}
body {
    background-image: url('TEEMO.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    color: white; 
}
 #return-button {
            background-color: #0D6F91; 
            color: white;
            font-size: 24px;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            margin-top: 40px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        #return-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%; 
            width: 100%;
            height: 100%;
            background-color: #0091C8; 
            z-index: -1;
            transition: left 0.3s ease; 
        }

        #return-button:hover::before {
            left: 0; 
        }

        #return-button:hover {
            background-color: #0091C8; 
        }
    </style>

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
}

.questions {
    background-color: #1a1a1a;
    color: #b3b3b3;
    padding: 20px;
    margin: 0 auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.5s ease;
    text-align: left; /* Align questions to the left */
}

.questions p {
    margin: 10px 0;
}

input {
    border: none;
    outline: none;
    padding: 8px;
    background-color: #333333;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: calc(100% - 16px); 
    margin-bottom: 10px;
    display: inline-block;
    text-align: center;
}

input:focus {
    background-color: #444444;
}

button {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

/* Updated number design */
.questions p::before {
    content: counter(questionNumber);
    counter-increment: questionNumber;
    background-color: #3498db;
    color: #ffffff;
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    margin-right: 10px;
    border-radius: 50%;
}

