* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

body a {
    color: red;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
}

.logo-container {
    display: flex;
    align-items: center;
}


.gif img {
    height: 50px; 
    margin-right: 5px; 
}


.logo img {
    height: 50px; 
    width: auto; 
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease; 
    padding: 15px;
}

nav ul li a:hover {
    background-color: #ae0000;
    transform: scale(2.1); 
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 5px;
    border: none;
    border-radius: 3px;
    outline: none;
}

.search-bar button {
    padding: 5px 10px;
    margin-left: 5px;
    border: none;
    background-color: #ff0000;
    color: #fff;
    cursor: pointer;
}

.content {
    display: flex;
    align-items: center; 
    padding: 20px;
    background-color: #f9f9f9;
    justify-content: center;  
    gap: 20px;  
}

.text-box {
    background-color: #ffffff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    flex: 1;  
}

.image-of-the-day {
    flex-shrink: 0;
    width: 500px;  
    text-align: center;

}

.image-of-the-day img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    right: 25px;  
}

.all {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.image-of-the-day, .quote-of-the-day {
    width: 48%; 
}

.quote-of-the-day {
    padding: 20px;
    background-color: #262626;
    color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    margin-right: 20px;
    display: flex;
    flex-direction: column; 
    justify-content: center;  
    align-items: center;      
}

.quote-of-the-day h2 {
    margin: 0,
}
