* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

html {
    --bg-color: #EDF2FF;
    --text-color: #00082F;
    --primary-color: #4263EB;
    --primary-color-dark: #364FC7;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

.container-armaquinas {
    text-align: center;
    width: 300px;
    margin: 60px auto;
}

#logo-img {
    width: 77%;
    height: auto;
}

.avatar-armaquinas {
    border-radius: 0;
    width: 150px;
    height: 150px;
    padding: 3.7px;
}

.title-armaquinas {
    font-size: 32px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.username-armaquinas {
    font-family: 'Roboto Mono', monospace;
    font-weight: 400;
    opacity: 0.8;
    font-size: 18px;
}

.social-section-armaquinas {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0 8px;
}

.social-logo-armaquinas {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.social-text-armaquinas {
    font-size: 16px;
    font-weight: 600;
}

ul.social-links-armaquinas {
    list-style: none;
    margin: 24px 0;
}

ul.social-links-armaquinas li a {
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 16px;
    border-radius: 6px;
    transition: background 400ms;
}

ul.social-links-armaquinas li a:hover {
    background: var(--primary-color-dark);
}