body, html {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.background-box {
    position: absolute;

    width: 120vw;
    height: 120vh;
}

.background-image {
    filter: blur(8px);
    width: 100%;
    height: 100%;
    transition: filter 500ms linear;
    z-index: -1;
    transform: scale(1.1);
    object-fit: cover;
}

.background-image:hover {
    filter:none;
    transition: filter 500ms linear;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;

    position: absolute;
    background-color: #BB9351;
    width: 500px;
    height: 700px;
    border-radius: 30px;

    left: calc(50vw - 250px);
    top: calc(50vh - 350px);

    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 300px;
    margin-top: 20px;
}

.pfp-container {
    position: relative;
    margin-top: 100px;
    margin-bottom: 0;
    padding: 0;
}

.pfp {
    border-radius: 100%;
    width: 100px;
}

.thought-bubble {
    position: absolute;
    bottom: 75px;
    left: 85px;

    background-color: white;
    color: #BB9351;
    padding: 10px 15px;
    border-radius: 20px;

    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: bold;
    font-size: 14px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 10px;;

    width: max-content;
    max-width: 130px;
    overflow-wrap: break-word;

    opacity: 0;
    transition: opacity 1.5s ease;
}

.thought-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    
    border-width: 10px 10px 0 0;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.name {
    color: white;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 30px;
    margin: 0;
    padding: 0;
}

.about {
    color: white;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.connections {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    gap:10px;
}

.collapsible {
    background-color: transparent;
    width: 100%;
    height: 50px;
    border: 2px solid white;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 10px;

    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 15px;
    color: white;
}

.collapsible:hover {
    background-color: rgba(0.1, 0.1, 0.1, 0.1);
}

.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

p {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 15px;
    color: white;
}

@media (max-width: 600px) {
    body,html {
        overflow: auto;
        background-color: #BB9351;
    }

    .background-box {
        display: none;
    }

    .card {
        position: relative;
        top: 0;
        left: 0;

        width: 100%;
        height: auto;
        min-height: 100vh;

        border-radius: 0;
        box-shadow: none;
    }

    .card-content {
        width: 85%;
    }
}
