body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    position: relative; 
    overflow: hidden; 
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    width: 400px;
}

textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    resize: vertical;
    min-height: 100px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

.music-controls {
    margin-top: 15px;
    text-align: center;
}

#musicToggleBtn {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#musicToggleBtn:hover {
    background-color: #ff5252;
}

#epicFace {
    position: fixed;
    top: 20px; 
    right: 20px; 
    width: 100px; 
    height: 100px;
    animation: spin 5s linear infinite; 
    z-index: 10; 
}

#inverseBtn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 10px;
}

#inverseBtn:hover {
    background-color: #0056b3;
}

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

.output-container {
    position: relative;
    width: 100%;
}

#copyBtn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}

#copyBtn:hover {
    background-color: #0056b3;
}

#copyBtn:active {
    background-color: #003d80;
}

.profile-link {
    position: absolute;
    top: 10px;
    left: 10px;
}

.profile-link a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s;
}

.profile-link a:hover {
    color: #0056b3;
}