:root {
    --Green: #c5f82a;
    --White: #ffffff;
    --Grey700: #333333;
    --Grey800: #1f1f1f;
    --Grey900: #141414;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--Grey900);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.main-container {
    background-color: var(--Grey800);
    width: 340px;
    height: 470px;
    border-radius: 10px;
}

.attribution {
    position: absolute;
    bottom: 10px;
    color: var(--White);
}

.info-container {
    padding: 30px;
    width: 100%;
    height: 100%;
}

.styled-button {
    background-color: var(--Grey700);
    width: 100%;
    height: 34px;
    border-radius: 10px;
    margin: 6px 0 6px 0;
    border: none;
    font-family: "Inter", serif;
    font-weight: 600;
    color: var(--White);
    cursor: pointer;
}
.styled-button:hover{
    background-color: var(--Green);
    color: var(--Grey900);
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Inter", serif;
    margin-bottom: 12px;
}

.profile {
    img {
        width: 70px;
        border-radius: 100px;

    }

    h1 {
        padding: 8px;
        margin-top: 16px;
        font-size: 18px;
        font-weight: 600;
        color: var(--White);
    }

    h3 {
        color: var(--Green);
        font-size: 12px;
        margin-bottom: 20px;
    }

    p {
        font-size: 12px;
        color: var(--White);
        font-weight: 400;
    }
}