body {
    background-color: #121212;
    color: #fff;
    font-family: "Courier New", monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
    text-align: center;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    margin-bottom: 30px;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-input {
    background-color: #333;
    color: #fff;
    border-radius: 50px;
    width: 500px;
    height: 40px;
    text-align: center;
    border: solid 1px #3b3b3b;
    margin-bottom: 20px;
}

.buttons-container {
    display: flex;
    gap: 20px;
}

.search-button, .feeling-lucky-button {
    background-color: #444;
    color: #fff;
    border-radius: 50px;
    width: 240px;
    height: 40px;
    border: solid 1px #3b3b3b;
    cursor: pointer;
}
