@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    padding: 20px;
}

.container {
    width: 90%;
    max-width: 1028px;
    text-align: center;
}

/* Заголовок */
h1 {
    font-size: 288px;
    font-weight: 100;
    text-align: center;
    color: #000;
}

/* Поле ввода */
#searchvtwolInput {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 14%;
    font-size: 100px;
    font-weight: 300;
    padding: 10px 20px;
    border: 2px solid black;
    border-radius: 150px;
    background: rgba(196, 196, 196, 0);
    color: gray;
    text-align: center;
    transition: 0.3s;
}

#searchvtwolInput:focus {
    color: black;
    border-color: #555;
}

/* Список */
#verbList {
    list-style-type: none;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Расстояние между элементами */
}

/* Элементы списка */
.verbItem, .verbItem2 {
    width: 100%;
    height: 14%;
    font-size: 100px;
    font-weight: 300;
    border: 2px solid black;
    border-radius: 150px;
    background: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    transition: 0.3s;
    padding: 10px 20px;
}

.verbItem:hover, .verbItem2:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* 📱 Адаптивность */
@media (max-width: 768px) {
    h1 {
        font-size: 288px;
        font-weight: 100;
    }

    #searchvtwolInput, .verbItem, .verbItem2 {
        height: 14%;
        font-size: 100px;
        border-radius: 150px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    #searchvtwolInput, .verbItem, .verbItem2 {
        height: 14%;
        font-size: 18px;
        border-radius: 150px;
    }
}
