@font-face {
    font-family: 'Atlante Display';
    src: url('../fonts/AtlanteDisplay-Bold.woff2') format('woff2'),
        url('../fonts/AtlanteDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cera PRO';
    src: url('../fonts/CeraPRO-Medium.woff2') format('woff2'),
        url('../fonts/CeraPRO-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
}
a {
    border-bottom: 1px solid transparent;
    color: inherit;
    text-decoration: none;
    transition: border .3s;
}
a:hover {
    border-color: currentColor;
    transition: border .3s;
}
body {
    align-items: center;
    background-color: #fff8ac;
    color: #007699;
    display: flex;
    font-family: 'Cera PRO';
    height: 100svh;
    justify-content: center;
    text-align: center;
}
.img-container {
    position: relative;
    padding: 10px 20px;
}
.violine {
    max-height: 60vh;
}
.bubble {
    aspect-ratio: 1 / 1;
    bottom: 15%;
    position: absolute;
    right: 0%;
    width: 40%;
    z-index: 10;
}
h1 {
    font-family: 'Atlante Display';
    font-size: clamp(24px, 9vw, 47px);
    line-height: 1;
    margin-bottom: clamp(10px, 3vw, 20px);
}
address {
    font-style: normal;
    font-size: clamp(16px, 5vw, 24px);
    line-height: 1.4;
}
@media screen and (max-width: 480px) {
    .violine {
        max-height: none;
        max-width: 90%;
    }
    .bubble {
        bottom: 17%;
        right: 6%;
        width: 35%;
    }
}
