@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #e3e5eb;
    width: 100vw;
    height: 100vh;
}


.content {
    /* background-color: red; */
    width: 77%;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 6px;
    position: absolute;
    right: 0;
    top: -50px;
    align-items: center;
}


.contador {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: -1;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
}