div {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    color: black;
    text-align: center;
}

h1, h2, h3 {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-content: space-around;
}

.image1 {
    width:100%;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    border-radius: 20px;
}

header {
    height:100%;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1504639725590-34d0984388bd?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-color: rgba(0, 150, 255, 0.5); /* A blue tint */
    background-blend-mode: multiply;           /* Blends color and image */
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.job {
    color:aliceblue;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.gradient-background {
    background: linear-gradient(300deg, #52d4ff, #ff5de9, #ffcd29);
    background-size: 180% 180%;
    animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#caller {
    border-radius: 15px;
}

#image9 {
    border-radius: 15px;
    }