@import url('https://fonts.googleapis.com/css?family=Luckiest+Guy&display=swap');
@import url('https://fonts.googleapis.com/css?family=Coustard&display=swap');


.modal-intro {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image:url('../assets/images/back.png');
    z-index: 1000;
    transition: 0.3s;
}

.main-container {
    background-image: url('../assets/images/main.jpg');
    background-size: cover;
}

.main-title {
    font-size: 60px;
    text-transform: uppercase;
    font-family: 'Luckiest Guy', cursive;
}

.main-description {
    margin: 50px;
    text-align: center;
    font-size: 25px;
    font-family: 'Coustard', serif;
}

.main-button-start {
    color: white;
    font-size: 30px;
    border: 0;
    background-color: #49d1af;
    width: 150px;
    height: 50px;
}

.main-button-start:hover {
    background-color: yellowgreen;
    transition: .2s;
}

.hidden {
    display: none;
    transition: .3s;
}

.img {
    width: 350px;
    height: 250px;
}

.main-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.levels-wrapper {
    display: flex;
}

.level-buttons {
    display: flex;

}

.level-title {
    line-height: 2.5;
    font-size: 20px;
}

.lev {
    background-color: rgb(190, 174, 239);
    border: 0px;
}

.lev:hover {
    background-color: blue;
    transition: .2s;
    color: white;
}

.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    width: 800px;
}

.btn-repeat {
    width: 20%;
}

.result {
    width: 20%;
}

.btn-speak {
    width: 50%;
}

.btn-repeat, .btn-speak, .result {
    background-color: rgba(50, 95, 255, 0.5);
    outline: 0;
    border: 0;
    height: 30px;
    color: white;
    border-radius: 5px;
}

.btn-repeat:hover, .btn-speak:hover, .result:hover {
    transition: .2s;
    background-color: rgb(50, 95, 255);
}

.btn-active {
    background-color: rgb(50, 95, 255);
    border: 2px solid black;
}

.level-active {
    background-color: blue;
    color: white;
}

.lev {
    outline: 0;
    margin: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.word-eng {

}

.word-items {
    max-width: 1000px;
    height: 200px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.word-transkr, .word-eng {
    font-size: 20px;
    padding: 5px;
}

.translation {
    height: 50px;
    text-align: center;
    font-size: 25px;
    color: white;
    line-height: 2;
}

.transl-active {
    border-bottom: 2px solid black;
    position: relative;
}

.transl-active::before {
    content: '';
    display: block;
    background-image: url('../assets/images/micro.png');
    background-size: cover;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 15px;
}

.word-wrapper {
    display: flex;
    flex-direction: column;
    margin: 10px;
    width: 150px;
    height: 80px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgba(62, 174, 174, 0.8);
    border: 1px solid black;
}

.word-wrapper--active {
    filter: blur(2px);
}

.word-wrapper:hover {
    background-color: rgb(62, 174, 174);
    transition: .3s;
    box-shadow: 2px 2px 18px 0px rgba(50, 50, 50, 0.76);
}

.word-wrapper::before {
    content: '';
    display: block;
    background-image: url('../assets/images/img_185617.png');
    background-size: cover;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 5px;
    top: 30px;
}

.like {
    width: 35px;
    height: 35px;
    background-image: url('../assets/images/like.svg');
    background-size: cover;
    margin: 5px;
}

.score {
    display: flex;
}

.results-wrapper {
    display: none;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.unknown-words {
    display: flex;
    flex-direction: column;
}

.card-result {
    display: flex;
    cursor: pointer;
    margin: 10px;
    background-color: blue;
    color: white;
    padding: 10px;
    border-radius: 8px;
}

.result-hidden {
    display: none;
}

.result-btn-wrapper {
    width: 250px;
    display: flex;
    justify-content: space-between;
}

.blur-active {
    filter: blur(5px);
}


.transcr-result {
    margin-left: 15px;
    margin-right: 15px;
}

.return, .new-game {
    border: 0;
    background-color: crimson;
    color: white;
    padding: 10px;
    border-radius: 10px;
}

.return:hover, .new-game:hover {
    box-shadow: 2px 2px 18px 0px rgba(50, 50, 50, 0.76);
    transition: .2s;
}