

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Yeseva+One&display=swap');

.character {
	position: fixed;
    width: 300px;
    height: 300px;
    cursor: pointer;
    transition: transform 0.5s ease;
    z-index: 999;
}

.character__container {
    position: relative;
	display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.character__close-button {
    position: absolute;
    top: -20px;
    right: -12px;
    display: block;
    width: 20px;
    height: 20px;
    /* background: url(https://fs.getcourse.ru/fileservice/file/download/a/5752/sc/508/h/f0d30261050346d9b4e75be4679c0336.svg) no-repeat center center !important;*//*белый*/
    background: url(https://fs.getcourse.ru/fileservice/file/download/a/5752/sc/67/h/1477169192eae0e289f64ef28a43248f.svg) no-repeat center center !important;/*черный*/
    border: none;
    padding: 0;
}

.character__img {
    width: 300px;
    height: 300px;
}

@media(max-width: 520px) {
	.character__img {
        width: 200px;
        height: 200px;
    }
}
