body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: white;
    background-image: url('img/oobgo-ia.jpg');
    background-size: contain; /* This ensures the image fits within the body element */
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.text {
    font-size: 50pt;
    animation: vibrate 10s infinite alternate;
    margin-bottom: 100px;
}

@keyframes vibrate {
    from {
        font-size: 20pt;
    }
    to {
        font-size: 30pt;
    }
}
.background-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; /* To ensure the link is above other content */
    display: block;
}
