header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (min-width: 1000px) {
    .header-background {
        background-color: #f0f8f7;
        position: absolute;
        top: 0;
        left: 0;
        height: 300px;
        width: calc(100% - 150px);
        border-top-right-radius: 80px;
        border-bottom-right-radius: 80px;
    }
    .content-web {
        display: flex !important;
    }
}

@media (max-width: 1000px) {
    .content-phone {
        display: flex !important;
    }
}

header .image-container {
    display: flex;
    align-content: center;
    justify-content: center;
    object-fit: contain;
}

header .content-phone {
    margin-top: 10%;
    margin-bottom: 10%;
}

header .content {
    margin-top: 40px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

header span {
    margin-top: 2%;
    color: #088673;
    font-size: clamp(10px, 2vw + 10px, 45px);
    font-weight: 600;
    font-family: 'Prompt-Bold', sans-serif;
}

.container {
    display: flex;
    align-content: center;
    justify-content: center;
}

.linktree-container {
    display: flex;
    align-content: center;
    justify-content: center;

    flex-direction: column;
    gap: 10px;

    width: 500px;
}

.linktree-container a {
    text-decoration: none;
}

@media (min-width: 1000px) {
    .linktree-container {
        margin-top: 10%;
    }
}

@media (max-width: 700px) {
    .linktree-container .linktree span {
        font-family: 'Prompt-SemiBold', sans-serif !important;
    }
}

@media (max-width: 300px) {
    .linktree-container .linktree span {
        font-size: 13px !important;
    }
}
@media (max-width: 200px) {
    .linktree-container .linktree span {
        font-size: 10px !important;
    }
}

.linktree-container .linktree {
    max-width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    text-align: left !important;
    flex-direction: row;
    padding: 5px;
    font-family: 'Prompt-Bold', sans-serif;
    font-weight: 600;
    color: #088673;
    border: 1px solid #D9D9D9;
    border-radius: 3px;

    font-size: clamp(10px, 2vw + 10px, 30px);
}

.linktree-container .linktree span {
    margin-left: 10px;
}

.linktree-container .linktree img {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 10px;
    margin-right: 10px;
    border-radius: 5px;

    width: 50px;
    height: 33px;
}

#img-web {
    margin-top: 10px;
}
#img-phone {
    border-radius: 100%;
}
