body, h1, ul {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    background-color: #7c7c7c;
    background: linear-gradient(to top, #b4b4b4, #6d6c6c);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
}
.container{
    background-color: #999999;
    background: linear-gradient(to top, #b4b4b4, #6d6c6c);
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
}
h1 {
    font-size: 36px;
    color: #f0d318;
    margin: 32px 0;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    margin: 10px 0;
}
a {
    text-decoration: none;
    color: #474747;
    font-weight: bold;
    font-size: 24px;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}
.container a:hover {
    color: #f0d318;
    transform: translateY(5px);
    animation: floatAnimation 0.3s 1 forwards;
}
@keyframes floatAnimation {
    0% {
        transform: translateY(2.5px);
    }
    100% {
        transform: translateY(-2.5px);
    }
}
.top-bar {
    padding: 10px;
    text-align: start;
    width: 50%;
    float: left;
    height: 39px;
    display: flex;
    align-items: center;
    background-color: transparent;    
}
.top-bar a {
    color: #f0f0f0;
    font-family: Arial, sans-serif;
    text-decoration: none;
    font-weight: bold;
}
.images{
   height: auto;
   width: auto;
}
.image{
    background-color: #999999;
    border-radius:10px;
    position: relative;
    overflow: hidden;
    width: auto;
    height: auto;
}