* {
    box-sizing: border-box;
}
:root {
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
    :root { font-family: InterVariable, sans-serif; }
}
body {
    position: relative;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    background: linear-gradient(0deg, rgb(7, 26, 140), rgb(76, 170, 193));
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    flex-direction: column;
    text-align: center;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
}
.profile {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column; 
    align-items: center;
    max-width: 580px;
    padding: 64px 16px 64px 16px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
}

.avatar {
    width: 96px;
    min-height: 96px;
    background-color: #003366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: white;
    margin-bottom: 1rem;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.name {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -.4px;
}
.title {
    font-size: 16px;
    margin-top: 2px;
    font-weight: 500;
    line-height: 1.5;
}
.social-media-icons-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
}
.social-media-icons-container a {
    display: block;
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    padding: .5rem;
    color: white;
    text-decoration: none;
    font-size: 24px;
}
.social-media-icons-container .social-media-icon:hover svg {
    transform: scale(1.075);
}
.social-media-icons-container a svg {
    display: block;
    width: 32px;
    height: 32px;
    fill: #fff;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
    align-items: center; 
}
.styled-link-container {
    width: 100%;
    border: 1px solid white;
    border-radius: 30px;
    transition: box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99), border-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99), transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99), background-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
}
.styled-link-container:hover {
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
    background-color: white;
}
.styled-link-container:hover .link-button{
    color: #071A8C;
}
.link-button {
    display: flex;
    text-decoration: none;
    color: white;
    width: 100%;
    min-height: 64px !important;
    margin: 0;
    padding: 16px 44px;
    box-sizing: border-box;
    vertical-align: middle;
    text-align: center;
    justify-content: center;
    align-items: center; 
}

.footer {
    position: absolute;
    left: 0;
    bottom: 1rem;
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 12px;
}