@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    font-family: "Roboto Condensed", serif;
}

body {
    background: rgb(0,0,0);
    background: linear-gradient(45deg, rgba(0,0,0,1) 0%, rgba(50,50,50,1) 75%, rgba(213,213,213,1) 100%);
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #888;
    border-radius: 5px;
    width: 300px;
    height: 300px;
}

.card__title {
    font-weight: bold;
    font-size: 30px;
}

.btn {
    border: 1px black solid;
    background-color: #bebebe;
    font-size: 20px;
    width: 100px;
    height: 50px;
    margin-top: 20px;
    border-radius: 5px;
}

.modal {
    display: none; /* Скрываем модальное окно по умолчанию */
    position: fixed; /* Фиксированное позиционирование, чтобы окно перекрывало все */
    z-index: 1; /* Устанавливаем высокий z-index, чтобы окно было поверх всего */
    left: 0;
    top: 0;
    width: 100%; /* Полная ширина */
    height: 100%; /* Полная высота */
    overflow: auto; /* Включаем прокрутку, если контент не помещается */
    background-color: rgba(0,0,0,0.4); /* Полупрозрачный фон */
    justify-content: center; /* Выравнивание по горизонтали */
    align-items: center; /* Выравнивание по вертикали */
}

.modal-content {
    background-color: #b3b3b3;
    padding: 20px;
    width: 80%; /* Ширина контента */
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
}

img {
    width: 25vw;
}