
@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: inherit;
}

html {
box-sizing: border-box;
}

body {
font-family: 'Nunito', sans-serif;
font-weight: 400;
color: #333;
display: flex;
align-items: center;
justify-content: center;
}
.container {
    width: 90%;
    display: flex;
    flex-direction: column;
}
.heading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card-initial {
    width: 200px;
    height: 250px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    margin: 30px;
    transition: 0.4s all;
    padding: 10px;
    border-bottom: 20px solid lightgrey;
    position: relative;
}

.card-initial:hover {
transform: translate(2px, 2px);
}

.card-initial a {
    color: inherit;
    text-decoration: none;
}

.border {
    height: 10px;
    background: lightgrey;
}
.image {
    height: 65%;
    text-align: center;
    object-fit: contain;
    border-radius: 3px;
    overflow: hidden;
    /* border: 2px solid black; */
}
.image > img {
    /* height: 200px; */
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
    /* border: 2px solid green; */
}
a {
    color: inherit;
}
.btn-back, .home {
    width: 50px;
    height: 30px;
    background: white;
    color:rgb(213, 85, 224);
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    border-radius: 3px;
    transition: 0.3s all;
    margin: 0 20px;
    font-size: 3rem;
    cursor: pointer;  
    margin-left: 40px;
    /* margin-top: -2px; */
}
h1 {
    margin: 20px auto;
    letter-spacing: 5px;
    color: rgb(213, 85, 224);
    font-size: 3.5rem;
    text-align: center;
}
.icon {
    position: absolute;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    /* border: solid 5px rgba(206, 181, 181, 0.8); */
    background: rgba(245, 241, 241, 0.8);
    padding: 5px;
}
.icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.hidden {
    display: none;
}
.hidden-text {
    position: absolute;
    top: -10%;
    left: -50%;
    background: white;
    padding: 10px;
    width: 90%;
    border-radius: 15px;
    margin: 0 auto;
    border: 1px dashed brown;
    text-align: center;
    min-height: 80px;
}
.text {
    height: 20%;
    display: flex;
    justify-content: center;
    font-weight: bold;
    align-items: center;
    text-align: center;
}
.text-russian {
    color: rgb(213, 85, 224);
    font-size: 1.1rem;
}
