html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }
/* Variables */
:root {
    --primary-color: #9054d9;
    --secondary-color: #fff;
    --accent-color: #ffd700;
    --font-family: 'Roboto', sans-serif;
    --font-size: 16px;
    --font-weight: 300;
    --transition-speed: 0.3s;
    --focus-ring-color: #ffffff80;
}

body {
    background-color: var(--primary-color);
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    color: var(--secondary-color);
}


.button {
    border: 2px solid var(--secondary-color);
    color: var(--primary-color);
    background-color: var(--secondary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    position: relative;
    outline: none;
}

.button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);    
}

.button:focus {
    outline: 3px solid var(--focus-ring-color);
    outline-offset: 2px;
}

.button:active {
    transform: translateY(1px);
}

.button i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.about {
    text-align: center;
    max-width: 50%;
    line-height: 1.5;
    a {
        color: var(--secondary-color);
        text-decoration: none;
        font-weight: 600;
    }
}

@media (prefers-reduced-motion: reduce) {
    .button {
        transition: none;
    }
}

@media (max-width: 768px) {
    .button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    .about {
        max-width: 100%;
    }
}

/* High contrast mode support */
@media (forced-colors: active) {
    .button {
        border: 2px solid ButtonText;
        color: ButtonText;
    }
    
    .button:hover,
    .button:focus {
        background-color: ButtonFace;
        color: ButtonText;
    }
}

.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 2rem;
    width: 100%;
    gap: 1rem;
}

.social-icon {
    color: var(--secondary-color);
    font-size: 24px;
    margin-right: 10px;
    margin-left: 10px;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.name-container {
    margin-bottom: 20px;
}
.name-container h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
}

.footer {
    margin-top: 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
