@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');

* {
    font-family: "Poetsen One", sans-serif;
}

body {
    background: #ff7af2;
    color: #FFF;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}

.happy-birthday-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s ease;
    animation: birthday 1s infinite;
    margin-top: 10px;
}

@keyframes birthday {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes move-rotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes slide-right {
    0% {
        transform: translateX(-100px);
    }
    50% {
        transform: translateX(0);
    }
}

.miffy-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.miffy-wrapper {
    position: relative;
    display: inline-block;
}

.miffy {
    display: none;
    transition: all 0.3s ease;
}

.message-bubble {
    display: none;
    position: absolute;
    left: 60px; /* Adjust as needed */
    top: 80px;  /* Adjust as needed */
    transition: all 0.3s ease;
}

.message-wrapper {
    display: none;
    position: absolute;
    left: 60px; /* adjust to position it */
    top: 80px;  /* adjust to position it */
    width: 200px;
    height: 80px;
    background: url('./media/message-bubble.png') no-repeat center center;
    background-size: contain;
    padding: 20px 20px 10px 20px; /* space for text */
    box-sizing: border-box;
    font-family: "Poetsen One", sans-serif;
    color: black;
}

.message-text {
    padding: 0;
    margin: 0;
    padding-left: 15px;
    font-size: 14px;
}

.gift-guess {
    opacity: 0;
    margin-top: 50px;
    transition: all 0.3s;
}

.gift-answers {
    margin-top: 10px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.reaction {
    opacity: 0;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

@keyframes slide-up {
    0% {
        transform: translateY(500px);
    }
    100% {
        transform: translateY(0px);
    }
}

.confirm-container {
    display: flex;
    width: 100%;
    justify-content: center;
}

.confirm {
    opacity: 0;
    border-radius: 10px;
    border: 0;
    width: 150px;
    height: 40px;
    background: #FFF;
    font-size: 16px;
    margin-top: 50px;
    transition: 0.3s all;
    border: 2px solid #000;
}

.guess-image {
    border-radius: 15px;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + label {
    background-color:#FFF;
    color: #000;
    border: 2px solid #000;
}

label {
    border-radius: 10px;
    padding: 10px;
}