body {
    background-color: rgb(241,241,241);
    height: 100vh;
    width: 100vw;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.2rem;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

.business-card {
    padding: 4rem;
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 0 0.5rem rgb(220,220,220);
    max-width: 47rem;
    margin: 1rem;
    text-align: center;
}

.business-card img.h1 {
    margin-top: 0;
    margin-bottom: 2rem;
}
.business-card .motto {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: match-parent;
}
.business-card .details {
    font-size: 1.75rem;
    margin-bottom: 0;
    text-align: justify;
}
.business-card pre {
    font-family: 'PT Mono', monospace;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.business-card .buttons {
    padding-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.business-card .buttons a {
    vertical-align: middle;
    line-height: 32px;
}

.btn {
    border: 1px solid #FCC200;
    background-color: #FCC200;
    color: black;
    padding: 0.85rem 1.25rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.25;
    cursor: pointer;
    border-radius: 5px;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    transition: color .15s ease-in-out,filter .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:hover {
    filter: brightness(110%);
}

a.btn {
    text-decoration: none;
}

a.mail {
    font-family: 'PT Sans Caption', monospace;
    font-weight: bold;
}

.languages {
    margin-top: 1rem;
}

.languages a {
    cursor: pointer;
    margin-left: 1rem;
}

.languages a.selected {
    font-weight: bold;
}

.hidden {
    display: none;
}
@media only screen and (max-width: 768px) {
    .business-card {
        padding: 2rem;
    }
}
@media only screen and (max-height: 568px) {
}

@media only screen and (max-height: 830px) {
    .container {
        height: auto;
    }
}
@media only screen and (max-width: 576px) {
    .business-card .buttons a {
        width: 100%
    }
    .business-card .motto {
        text-align: match-parent;
    }
}
@media only screen and (max-width: 450px) {
    .business-card h1 {
        clear: both;
        margin-top: 1rem;
    }
}

/** Bubbles **/
.business-card {
    position: relative;
    overflow: hidden;
}
.buttons {
    margin-bottom: 140px;
}
.bubble-container {
    position: absolute;
    left: -2rem; /* Offset the padding */
    bottom: -50px; /* Move the bubble container slightly below the parent container */
    width: calc(100% + 2rem);
    height: 200px; /* Height of the bubbles area */
}

/* Common bubble styling */
.bubble {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: absolute;
}

/* Bubble colors */
.bubble1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #FCC200, #F58D1F);
    z-index: 1000;
}

.bubble2 {
    height: 250px;
    width: 250px;
    left: 25%;
    top: 5%;
    background: linear-gradient(135deg, #77D900, #06AED5);
}

.bubble3 {
    width:300px;
    height:300px;
    top: -5%;
    left: 40%;
    background: linear-gradient(135deg, #F58D1F, #DD1C1A);
    z-index: 999;
}

.bubble4 {
    left: 65%;
    height: 250px;
    width: 250px;
    background: linear-gradient(135deg, #DD1C1A, #FCC200);
}

.bubble5 {
    left: 85%;
    top: 10%;
    background: linear-gradient(135deg, #06AED5, #77D900);
}

@media only screen and (max-width: 576px) {
    .bubble1 {
        left: -20%;
    }
}
.black-link {
    color: black;
}
