/* 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_out.gif") repeat;
    background-size: 300px 350px;
    color: white;
    margin: 0;
    padding: 0;
}

.logo-frame, .character-frame, .body-frame {
    display: inline-block;
    border: 5px  var(--dark-red); /* Dark red dotted border */
    border-radius: 25px;


    position: relative;
    transition: transform 0.3s;
    align-items: center;
    justify-content: center;
}

/* Additional styles for logo-frame */
.logo-frame {
    border-color: var(--goofy-blue);
    align-items: center;
    justify-content: center;
    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);
}

.logo {
    width: 700px;
    transition: transform 0.3s;
    align-items: center;
    justify-content: center;
}

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

}
.character-frame:hover {
    transform: rotate(360deg);
}
.container {

    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tag{
    width: 700px;
}
main {
}

main img {
    max-width: 100%;
    height: auto;
}

.character-and-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

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

.links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 20px; /* Adjust spacing as needed */
}

.links a {
    margin: 10px 0;
}

.links a img {
    
    height: 90px; /* Adjust size as needed */
    width: 300px;
}

.nutella-frame {
    display: inline-block;
    padding: 10px;
    border: 3px solid #4b2e83; /* Dark brown border */
    border-radius: 15px;
    background: #f2e6d9; /* Light brown background */
    box-shadow: 5px 5px 0 #8b4513, 10px 10px 0 #D2B48C; /* Stacked shadow for a fun effect */
    margin: 10px;
    position: relative;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.nutella-frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed #8b4513; /* Additional border layer */
    border-radius: 20px;
    z-index: -1; /* Place behind the main frame */
}

.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) }
}
