.clouds {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
}

.smallClouds {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
    text-align: center;
    align-content: stretch;  
    font-family: birdgo;
}

.titlePicture {
    width: 90rem;
    max-width: 1000px;
    animation: move 6s linear infinite;
}

.vspacer {
    width: 10rem;
}

.cloudContent {
    rotate: -1deg;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100%;
}

.phoneCloud {
    animation: move 5s linear infinite;
    z-index: 1;
    position: relative;
}

.cloud1 {
    width: 30rem;
    max-width: 400px;
}

.phone {    
    rotate: -2deg;
    font-size: min(3rem, 40px);
}

.emailCloud {
    animation: move 3s linear infinite;
    z-index: 1;
    position: relative;
}

.cloud2 {
    width: 40rem;
    max-width: 500px;
}

.email {    
    font-size: min(2.5rem, 30px);
}

.email a, .phone a {
    text-decoration: none;
    color: inherit;
}