* {
    font-family: "Inter";
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    background-color: #ffffff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    .main {
        height: 50%;
        width: 100%;
        max-width: 350px;
    
        .user-name {
            font-weight: 500;
            font-size: small;
            color: #404040;
            margin-bottom: 8px;
        }

        .user-info {
            font-weight: 400;
            font-size: 10px;
            color: #737373;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
    }
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
