@media screen and (max-width: 481px){


  /*write your CSS-Code here*/


}

.bubbles {
    display: flex;
    justify-content: space-around;
    width: 80vw;

    top: 30vw;
    left: 10vw;
    position: absolute;

    z-index: 2;
}

.bubblesBlurred {
    display: flex;
    justify-content: space-around;
    width: 80vw;

    top: 30vw;
    left: 10vw;
    position: absolute;

    z-index: 1;

    filter: blur(10px);
}

.bubbleArtist {
    font-size: 3vw;
}
.bubbleSides {
    font-size: 2vw;
}
.bubbleEdges {
    font-size: 1vw;
}

.bubbleDesc {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 10vw;
    height: 5vw;

    border-radius: 30px;
    background-color: #ffa8ff8f;
}

.titleImage {
    width: 100vw;
    opacity: 1;

    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
    
    z-index: 0;
}

.presave a {
    display: flex;
    justify-content: center;

    font-style: italic;
    text-decoration: none;
    color: black;

    background-color: red;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0.1;
	}
	100% {
		opacity: 1;
	}
}