@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;700;800&display=swap');
body {
    font-family: 'Manrope', sans-serif;
    overflow: hidden;
}

.points-container {
    position: fixed;
    width: auto;
    z-index: 99;
    padding: 10px 30px;
    color: #ffffff;
    background: black;
    left: 0;
    top: 0;
}

.window {
    background: #ffffff;
    /*border: solid #eee 2px;*/
    border-radius: 20px;
    top: 40%;
    left: 30%;
    position: absolute;
    min-height: 50px;
    min-width: 200px;
    box-shadow: rgba(0, 0, 0, 0.25) 3px 4px 7px;
    padding: 40px;
    z-index: 5;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    /*animation-name: example;*/
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.close {
    display: block;
    position: absolute;
    font-size: 20px;
    right: 10px;
    top: 10px;
    /*width: 20px;*/
    /*height: 20px;*/
    /*line-height: 18px;*/
    text-align: center;
    padding: 0px 10px 3px;
    border-radius: 50%;
    background: red;
    color: white;
    cursor: pointer;
}

button {
    background: #ffffff;
    font-family: 'Manrope', sans-serif;
    border: solid 1px #0000000;
}


@keyframes linksrechts {
    0% {
        transform: translateX(100%);
    }
    50% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(100%);
    }
}
@keyframes updown {
    0% {
        transform: translateY(90%);
    }
    50% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(90%);
    }
}
