body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
    overflow-y: auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 27px;
    font-weight: bold;
    color: white;
}

.logo img {
    height: 65px;
    margin-right: 10px;
    border-radius: 30px;
}

input[type="text"] {
    width: 35%;
    padding: 8px;
    border-radius: 45px;
    border: none;
    height: 35px;
    font-size: 16px;
    margin-right: -50px;
}

input[type="text"]::placeholder {
    font-size: 125%;
}

.icons {
    display: flex;
    gap: 20px;
    margin-right: 100px;
}

.icons a img {
    height: 60px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.icons a:hover img {
    transform: scale(1.2);
}

.container {
    padding: 100px 20px 20px;
    text-align: center;
}

h1 {
    font-size: 2em;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 1.2em;
    margin: 10px 0;
}
