html {
    font-family: monospace, system-ui, -apple-system, sans-serif;
    user-select: none;
}

body {
    cursor: wait;
}

#xo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 150px;
    background-color: rgba(170, 130, 190, 0.65);
    text-align: center;
    box-shadow: 0px 0px 35px 15px rgba(170, 130, 190, 1);
    cursor: url(mid.cur), auto;
}

#xo {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -45%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}


#xoxo {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 390px;
    height: 140px;
    border: 2px solid rgba(200, 180, 220, 1);
    box-shadow: 0px 0px 5px 1px rgba(200, 180, 220, 1);
    transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

#xoxo:hover {
  box-shadow: 0px 0px 15px 2px rgba(200, 180, 220, 1);
}


#xoxoxo {
    position: relative;
    margin: auto;
    width: 350px;
    height: 115px;
}

#txt {
    font-size: 2.2em;
    line-height: 140px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.75);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #E0E0E0;
}

#txt:hover {
    font-size: 2.5em;
    opacity: 0.9;
}

#mu {
    display: inline-block;
    position: absolute;
	width: 24px;
	height: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    bottom: 15px;
    right: 15px;
    display: flex;
}


#mu:hover {
    transform: scale(1.15);
    opacity: 0.9;
    cursor: pointer;
}

audio {
    display: none;
}

.icon-group {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 12px;
    z-index: 1;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: all 0.2s ease-in-out;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
    color: inherit;
}

.social-icon:hover {
    transform: scale(1.15);
    opacity: 0.9;
    cursor: pointer;
}

body {
    background: linear-gradient(
        -45deg,
        #bc93d6,
        #b085ca,
        #a67ac2
    );
    background-size: 200% 200%;
    animation: gradientFlow 30s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

#dagif {
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 185px;
    height: auto;
    z-index: 1;
    user-drag: none;
    -webkit-user-drag: none;
    pointer-events: none;
    opacity: 0;
    animation: fadeInGif 15s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInGif {
    from {
		opacity: 0;
    }
    to {
		opacity: 1;
    }
}