/* 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("background1.png");
    background-size: cover;
    color: white;
    margin: 0 0;
}


/* Additional styles for logo-frame */
.logo-frame {
}
.body-frame{
    display: flex;
    flex-direction: row;
}
/* Additional styles for character-frame */
.character-frame {
  
}
.desc1{
    width: 50vw;
}
.desc2{
    width: 40vw;

}

/* Additional styles for body-frame */
.navbar {
    display: flex;
    top:0;
}

.logo {
    width: 600px;
    height: auto;
    transition: transform 0.3s;
}

.character {
    width: 40vw; /* Adjust size as needed */
    height: 60vh;
    transition: transform 0.3s;
    border: solid white 10px;
    border-radius: 40px;
    margin-left: 8vw;
    margin-top: 4vh;

}
.character-frame:hover {
    transform: rotate(360deg);
}
.container {
    background: url("background2.gif");
    text-align: center;
    background-size: 15%;
    margin: 0 0;
}

header {
    padding: 20px;
    border-radius: 10px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: lighter;
}

header p {
    font-size: 1.2em;
}

main {
}



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

.desc {

}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    
    margin-top: 50px;
}



.links a img {
    width: 100px; 
    height: 100px;
    padding: 40px;
    margin-right: 100px;
    margin-left: 100px;
    border: solid white 10px;
    border-radius: 40px;
    transition: transform 0.3s;
    background: rgba(164, 156, 0, 0.578);
    backdrop-filter: blur(10px);

}

.tag{
    width: 500px;
}
footer{
    
    width: 100%;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    bottom: 0;

}


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