@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

body {
    background-color: #131313;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: radial-gradient(orange 1px, transparent 0);
    background-size: 40px 40px;
    background-position: -19px -19px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 16px 32px;
    background: rgba(255, 211, 70, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(253, 191, 0, 0.3);
    min-width: 550px;
    min-height: 180px;
}

.avatar {
    height: 128px;
    width: 128px;
    border-radius: 50%;
    margin-right: 64px;
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-right: 64px;
}

.name {
    margin-top: 16px;
    font-weight: 500;
    font-size: 32px;
    color: orange;
}

.quote {
    margin: 4px 0 16px;
    width: 100%;
    height: 10%;
}

.links {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 32px;
}