* {
    box-sizing: border-box;
}

img {
    max-width:100%;}

body, html {
        cursor: default;
        background-color:bisque;
        overflow-y:none;
        height:100vh;
        font-family: "edding-780", sans-serif;
        font-weight: 400;
        font-style: normal;
}

.container {
    position: absolute;
    width: 100%;
    height: 100%;
    margin:25px;
}

/* CSS for the button */
.buttons {
    position: absolute;
    top:0%;
    left: 5%;
    transform: translate(-50%, -50%);
}

html, body {
    background-color: #f0f0f0; /* Light gray */
}

#avoidanceDiv {
    width: 100px;
    height: 100px;
    position: absolute;
    left:80%;
    top:10%;
    background-color: blue;
    pointer-events: none;
    transition: top 0.1s ease-out, left 0.1s ease-out;
    border-radius:50px;
}

#avoidanceDiv2 {
    border-radius:50px;
    width: 100px;
    height: 100px;
    background-color: red;
    position: absolute;
    top: 70%;
    left: 10%;
    pointer-events: none;
    transition: top 0.1s ease-out, left 0.1s ease-out; /* Smooth transition for movement */
}

        /* CSS for the message */
        #message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgb(255, 255, 255);
            border:black 2px solid;
            color: black;
            padding: 20px;
            border-radius: 5px;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

.text {
    text-align:center;
    font-size:20px;
}

button {
    font-family: "cc-dynamic-duo-open-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 400;
    font-size:25px;
}

.message {
    text-align:center;
}