* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

body h1, p {
    text-align: center;
}

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;  
}


.all {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
  }
  
  .nav-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: black;
    color: white;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 10px;
    border: none;
  }
  
  .nav-button:hover {
    background-color: #000000;
  }
  
  .art-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; 
  }
  
  .art {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: space-between;
    width: 200px; 
    background-color: #f9f9f9; 
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px; 
    transition: all 0.3s ease; 
    text-align: center;
  }
  
  .art img {
    width: 100%; 
    height: auto; 
    border-radius: 5px;
    margin-bottom: 10px; 
  }
  
  .art h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
  }
  
  .art p {
    font-size: 14px;
    margin: 0;
    color: #666;
  }
  
  .art.large {
    flex: 1.5; 
    transform: scale(1.2); 
    background-color: #ffffff; 
  }
  
  .art.small {
    flex: 1;
    opacity: 0.8; 
  }
  