body {
    font-family: Arial, sans-serif;
    background-color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.links {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    gap: 20px;
}
.content {
    text-align: center;
    position: relative;
}
img {
    width: 300px;
    margin-bottom: 10px;
}
.images {
    position: absolute;
    top: 60px;
    right: 10px;
    color: blue;
    font-size: 16px;
    font-weight: lighter;
    margin-right: 110px;
}
.search-container {
    margin-top: 10px;
}
input {
    width: 600px;
    height: 40px;
    border: 1px solid lightgray;
    border-radius: 20px;
    padding-left: 15px;
    font-size: 16px;
    outline: none;
}
.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    
}
button {
    width: 140px;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: #f8f9fa;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background-color: #e8e8e8;
}
.languages {
    margin-top: 20px;
    font-size: 14px;
}
.languages .color {
    color: blue;
    cursor: pointer;
}
