html {
    box-sizing: border-box;
    margin: 0;
}
body {
    background-color: rgb(40, 42, 54);
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 0;
    font-family: system-ui;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
    width: 100vw;
    color: #ebebeb;
}


.main-title {
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-align: center;
}
.block_title {
    display: flex;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.img_UK {
    object-fit: contain;
    width: 20vw;
    max-width: 83px;
    margin: 10px;
}
.button {
    padding: 10px;
    background-color: #1f242f;
    border: 1px solid #545a79;
    /*border-bottom: 2px solid #545a79;
    border-left: 2px solid #545a79;*/
    user-select: none;
    cursor: pointer;
    text-align: center;
}
.button:active {
    border: 1px solid #969bbe;

}

.button.see {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.button.get {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 50%;
}

.FalseAndTrueVerbsLen {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}
#verbsTrueLen {
    padding: 5px;
}
#verbsFalseLen {
    padding: 5px;
}
#wordsTrueLen {
    padding: 5px;
}
#wordsFalseLen {
    padding: 5px;
}
.newVerbButtons {
    display: flex;
    flex-direction: row;
}

.newWordButtons {
    display: flex;
    flex-direction: row;
}

#newVerbButtonTrue {
    background-color: #67a94c;
    border-top-left-radius: 5px;
    border-top-right-radius: 0px;
}
#newVerbButtonFalse {
    border-top-left-radius: 0px;
    border-top-right-radius: 5px;
    background-color: #bf3b3b;
}

#newWordButtonTrue {
    background-color: #67a94c;
    border-top-left-radius: 5px;
    border-top-right-radius: 0px;
}
#newWordButtonFalse {
    background-color: #bf3b3b;
    border-top-left-radius: 0px;
    border-top-right-radius: 5px;
}

p {
    margin: 0;
}
.verbs {
    margin: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.verbTemplate {
    padding: 5px;
    border: 1px solid #969bbe;
    padding: 5px 5px 0px 5px;
    background-color: #424e68;
}
.verbItems {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.verbItem {
    display: flex;
    min-width: 120px;
    flex-direction: column;
    width: 25%;

}
.verbExo {
    padding: 5px;
    border: 1px solid #969bbe;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    word-break: break-word;
}

.tips {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 10px;
    max-width: 701px;
}
.tips p {
    padding: 2px;
}

@media only screen and (max-width: 600px) {
    .verbItem {
        width: 50%;
    
    }
}