@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;600;700&display=swap');

:root {
    --bg: #2b2625;
    --description: #a7a7a7;
    --btn: #171614;
    --text-color: white;
}

body {
    background-color: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 500px;
    transform: scale(1.5);
}

#pfp {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
}

#username > p {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.75rem 0 0;
}

#description > p {
    color: var(--description);
    font-size: 1.05rem;
    margin: 0.45rem 0;
}

.button-div {
    width: 100%;
    margin: 0.5rem 0;
}

.button {
    background-color: var(--btn);
    border: none;
    height: 3.5rem;
    width: 400px;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 4px;
    opacity: 0.9;
    transition: transform 120ms ease-in, opacity 120ms ease-in;
    letter-spacing: 0.05rem;
}

.button:hover {
    transform: scale(1.025);
    opacity: 1;
}

#icons {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

#icons > a {
    margin: 0 0.5rem;
}
/* For tablets (portrait and landscape) */
@media (max-width: 1024px) {
    body {
        font-size: 1.2rem; /* Adjust base font size */
    }

    .wrapper {
        transform: scale(1.2); /* Adjust scale */
    }

    #pfp {
        width: 8rem; /* Adjust width */
        height: 8rem; /* Adjust height */
    }

    #username > p {
        font-size: 1.3rem; /* Adjust font size */
    }

    #description > p {
        font-size: 1rem; /* Adjust font size */
    }

    .button {
        height: 3rem; /* Adjust height */
        width: 90%; /* Make button width 90% of its container */
        font-size: 1rem; /* Adjust font size */
        letter-spacing: 0.1rem; /* Adjust letter spacing */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #icons > a {
        margin: 1rem 0.75rem; /* Adjust margin */
    }
}

/* For phones (portrait and landscape) */
@media (max-width: 768px) {
    body {
        font-size: 1rem; /* Adjust base font size */
    }

    .wrapper {
        transform: scale(1); /* Adjust scale */
    }

    #pfp {
        width: 6rem; /* Adjust width */
        height: 6rem; /* Adjust height */
    }

    #username > p {
        font-size: 1.1rem; /* Adjust font size */
    }

    #description > p {
        font-size: 0.9rem; /* Adjust font size */
    }

    .button {
        height: 2.5rem; /* Adjust height */
        width: 90%; /* Make button width 90% of its container */
        font-size: 0.9rem; /* Adjust font size */
        letter-spacing: 0.1rem; /* Adjust letter spacing */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .button-div a {
        text-decoration: none; /* Remove underline from links */
    }

    #icons > a {
        margin: 0.75rem 0.5rem; /* Adjust margin */
    }
}

/* For very small screens (portrait and landscape) */
@media (max-width: 450px) {
    .button {
        width: 100%; /* Make button width 100% of its container */
        font-size: 0.8rem; /* Adjust font size */
        letter-spacing: 0.1rem; /* Adjust letter spacing */
    }

    .button-div a {
        text-decoration: none; /* Remove underline from links */
    }

    #icons > a {
        margin: 0.5rem 0.25rem; /* Adjust margin */
    }
}