/* Define a base color */
:root {
    --base-red: #ff0000;
    --dark-red: #b30000;
    --light-red: #ff6666;
    --accent-yellow: #ffcc00;
    --goofy-blue: #0099ff;
    --goofy-green: #33cc33;
    --goofy-orange: #ff9900;
}

@keyframes goofy-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes goofy-tilt {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

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

body {
    font-family: 'Arial', sans-serif;
    background: url("background.png");
    background-size: 100%;
    
}

.logo-frame, .character-frame, .body-frame {
    /* center on the screen */
    margin: 0 auto;
    display: inline-block;
    padding: 20px;
    border: 5px  var(--dark-red); /* Dark red dotted border */
    border-radius: 25px;


    margin: 10px;
    transition: transform 0.3s;

}

/* Additional styles for logo-frame */
.logo-frame {
    border-color: var(--goofy-blue);

    display: flex;
}

/* Additional styles for character-frame */
.character-frame {
  
    border-color: var(--goofy-green);
}

/* Additional styles for body-frame */
.body-frame {
    border-color: var(--goofy-orange);
    /* center elements */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 400px;
    padding-left: 600px;

}



.character {
    width: 500px; /* Adjust size as needed */
    transition: transform 0.3s;

}
.character-frame:hover {
    transform: rotate(360deg);
}
.container {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tag{
    width: 700px;
}


main img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.character-and-links {
    display: flex;

    flex-wrap: wrap;
}

.desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.links {

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: auto auto;
    border-radius: 10px;
    padding-top: 0;
}

.links a {
    margin: 10px 0;
}

.links a img {
    width: 90px; 
    height: 90px; 
}

/* make nutella frame pink opaque background with rounded corner */
.nutella-frame {
    background-color: rgba(255, 85, 85, 1);
    border-radius: 60px;
    padding: 20px;
    margin: 10px;
    transition: transform 0.3s;
/* drop shadow for the frame and make it look more visible */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.nutella-frame:hover {
    transform: scale(1.1);
}

@keyframes horizontal-shaking {
    0% { transform: translateX(0) }
    25% { transform: translateX(5px) }
    50% { transform: translateX(-5px) }
    75% { transform: translateX(5px) }
    100% { transform: translateX(0) }
}
