html,
body {
    font-family: "Helvetica", "sans-serif";
    height: 100%;
    margin: 1%;
}

body {
    background: linear-gradient(
        180deg,
        rgba(148, 187, 233, 1) 0%,
        rgba(238, 174, 202, 1) 100%
    );
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    align-items: center;
    justify-content: center;
    display: flex;
}

.Content {
    background-color: #fffff5;
    border-radius: 7.5px;
    text-align: center;
    margin: auto;
    width: 100%; /* all boxes same width */
    box-sizing: border-box;
    white-space: nowrap;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

.container {
    display: flex;
    flex-direction: column; /* stack vertically */
    align-items: center; /* center horizontally */
    gap: 1rem;
    width: fit-content; /* shrink to fit the widest child */
    min-width: 25vw; /* scale with screen size, no smaller than this */
    max-width: 50vw; /* optional: cap size */
}

.Icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25em 0 0.25em 0.75em;
}

.Profile {
    width: 234.2px;
    height: 256.8px;
    border-radius: 20%;
}
