body {
    cursor: url('SmallCar.ico'), auto;
    background-image: url('pic_car.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
}



.overlay {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.container {
    width: 80%;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #ff00f2;
    margin-bottom: 30px;
}

.exercises {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.exercise {
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 200px;
    transition: background-color 0.3s;
}

.exercise a {
    color: #a016d6;
    text-decoration: none;
    font-weight: bold;
}

.exercise:hover {
    background-color: #4f4f4f;
}

.update-date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
}
