@font-face{
    font-family: 'Poppins';
    src: url('./fonts/Poppins-Bold.ttf');
}

body {
    margin: 0;
}

.block {
    display: block;
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto; 
}

.block__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block__content div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block__content div img {
    width: 100px;
    height: 100px;
}

.block__content div span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: gray
}