/* create a class to horizontally and vertically center with flexbox */

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background: #f1f1f1;
}

.center {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    color: #646464;
    line-height: 60px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    padding-left: 16px;
}

.tilt-container {
    perspective: 1000px; /* Adjusts the intensity of the 3D effect */
    display: inline-block;
}

.tilt-image {
    display: block;
    width: 100%; /* Ensure the image scales responsively */
    transition: transform 0.1s ease-in-out; /* Smooth transition */
    transform-style: preserve-3d;
}
