body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f7;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

#instructions {
    font-size: 1.2rem;
    color: #555;
}

.navigation button {
    padding: 10px 20px;
    margin: 5px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #039be5;
    color: white;
}

.navigation button:hover {
    background-color: #0288d1;
}

#techniqueSection {
    margin: 20px 0;
}

#working-area {
    margin: 20px auto;
    position: relative;
    width: 200px;
    height: 200px;
    background-color: rgba(3, 155, 229, 0.2);
    border-radius: 50%;
}

#dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.animated-text {
    font-size: 1.5rem;
    color: #555;
    margin-top: 20px;
    font-weight: bold;
}

/* Dropdown container */
.dropdown {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

/* Dropdown button */
.dropdown-button {
    background-color: #039be5;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Dropdown button hover effect */
.dropdown-button:hover {
    background-color: #0288d1;
}

/* Dropdown content container */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    text-align: left;
}

/* Links in the dropdown */
.dropdown-content a {
    color: #2c3e50;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    font-size: 1rem;
}

/* Link hover effect */
.dropdown-content a:hover {
    background-color: #f0f4f7;
}

/* Show dropdown content when hovered */
.dropdown:hover .dropdown-content {
    display: block;
}
