body {
    background-color: #230b33;
}
.search {
    --padding: 14px;
    
    width: max-content;
    display: flex;
    align-items: center;
    padding: var(--padding);
    border-radius: 28px;
    background: #7726ad;
    transition: background 0.25s;
}

.search:hover {
    background: #a232ed;
}

.search-input {
    font-size: 16px;
    font-family: 'Lexend', sans-serif;
    color: #333333;
    margin-left: var(--padding);
    outline: none;
    border: none;
    background: transparent;
    width: 400px;
}

.search-input::placeholder,
.search-icon {
    color: rgba (0, 0, 0, 0.5)
}

.description {
    font-size: 20px;
    font-family: 'Lexend', sans-serif;
    color: #ffffff;
}

.logo {
    width: 100px;
    height: 100px;
}

.logo-item {
    font-size: 16px;
    font-family: 'Lexend', sans-serif;
    color: #ffffff;
    text-align: center;
}


.logo-link:link {
    color: #ffffff;
    text-decoration: none;
}

.logo-link:visited {
    color: #ffffff;
    text-decoration: none;
}

.logo-item:hover {
    background: #a232ed;
}
