* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --black-50: rgba(0,0,0,0.82);
    --black-200: #1a1a1a;
    --white-150: rgb(235, 234, 234);
    --purple-700: #3b2952;
    --light-blue-500: #32408f;
    --light-red-700: #bb4242;
}

body {
    width: 100%;
    height: 100vh;
    background-color: var(--black-200);
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background-color: var(--white-150);
}

main > img {
    width: 100%;
    border-radius: 25px;
    -webkit-box-shadow: 1px 1px 7px 1px var(--black-50); 
    box-shadow: 1px 1px 7px 1px var(--black-50);
}

main > div {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header {
    text-align: center;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    margin-top: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.links_content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

a {
    display: flex;
    padding: 2px;
    background-color: var(--black-200);
    border-radius: 50%;
    transition: .3s;
}

.icon_github:hover {
    background-color: var(--purple-700);
}

.icon_linkedin:hover {
    background-color: var(--light-blue-500);
}

.icon_mail:hover {
    background-color: var(--light-red-700);
}