body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
}

.section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    animation: fadeIn 1s ease-in-out;
}

.myweb {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    animation: fadeIn 1s ease-in-out;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.animated-image-bottom-left,
.animated-image-top-right {
    position: absolute;
    opacity: 0;
}

.animated-image-bottom-left {
    left: 0;
    bottom: 0;
    animation: slideAndFadeBottomLeft 2s ease-in-out forwards;
    width: 350px;
    margin-left: -35px;
    top: 0;
    border-radius: 10px;
    border-color: black;
    border-width: 5px;
    border-style: solid;
}

.animated-image-top-right {
    right: 0;
    top: 0;
    width: 350px;
    margin-top: -175px;
    margin-right: -25px;
    animation: slideAndFadeTopRight 2s ease-in-out forwards;
    border-radius: 10px;
    border-color: black;
    border-width: 5px;
    border-style: solid;
}

@keyframes slideAndFadeBottomLeft {
    0% {
        left: 0;
        bottom: 0;
        opacity: 0;
    }

    100% {
        left: 50%;
        bottom: 50%;
        opacity: 1;
    }
}

@keyframes slideAndFadeTopRight {
    0% {
        right: 0;
        top: 0;
        opacity: 0;
    }

    100% {
        right: 50%;
        top: 450px;
        opacity: 1;
    }
}

.zoom-in-div {
    transition: transform 0.3s ease-in-out;
}

.zoom-in-div:hover {
    transform: scale(1.025);
}