@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    margin: 0;
    color: white;
}

.status {
    position: absolute;
    top: 20px;
    left: 20px;
    font-weight: 700;
    font-size: 1.5rem;
}

.container {
    text-align: center;
    position: relative;
}

.thumbs-up {
    max-width: 1200px;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.thumbs-up:hover {
    transform: rotateY(180deg);
}

.all-good {
    font-family: 'Inter', sans-serif;
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 400;
}
