body {
    background: #080820;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
 }
header {
    background-color: #1f1f1f1f;
    padding: 10px 20px;
    text-align: center;
    border-radius: 20%;
}
header h1 {
    margin: 0;
    font-size: 24px;
}
nav {
    opacity: 0;
    transform: translateY(5px);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
}
img {
    opacity: 0;
    transform: translateY(5px);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.5s;
}
h1 {
    opacity: 0;
    transform: translateY(5px);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0,5s;
}
section {
    opacity: 0;
    transform: translateY(5px);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
}
p {
    opacity: 0;
    transform: translateY(5px);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
    text-align: center;
}
  
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}
.search-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.search-menu li {
    margin: 5px;
}
.search-menu a {
    text-decoration: none;
    color: #ffffff;
    padding: 5px 10px;
    background-color: #3a3a3a;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.search-menu a:hover {
    background-color: #f39c12;
}
main section {
    padding: 20px;
    margin: 10px auto;
    max-width: 800px;
    background-color: #21222b;
    border-radius: 10px;
}
@media (max-width: 790px) {
    .search-menu a {
        padding: 5px 10px;
        font-size: 14px;
    }   
}
img {
    border-radius: 10%;
}
.titlep{
    color: crimson;
}
.link-style {
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.link-style:hover {
    color: #9e6a15;
    text-decoration: underline;
}