/* Style Settings */

:root {
    --font: 'Monaco', 'Monaco', Monospace;
}

body {
    background-color: rgb(243, 242, 242);
}

#userPhoto {
    width: 100px;
    height: 100px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
}

#userName {
    color: rgb(99, 99, 99);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#links {
	
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
}

.link-split {
	display: flex !important;
}

.link {
    display: block;
    background-color: rgb(27, 37, 77);
    color: #fff;
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all .25s cubic-bezier(.08, .59, .29, .99);
    border: solid var(--accentColor) 2px;
}

.split {
	width: 40% !important;
}

@media (min-width: 1025px) {
	.split {
		width: 50% !important;
	}
}

.link:hover {
    background-color: #fff;
    color: rgb(27, 37, 77);
    border: solid rgb(27, 37, 77) 2px;
}

.footer {
    text-align: center;
    font-size: 1.3rem;
}

.footer a {
    text-decoration:none;
}

.circulo {
    background: rgb(221, 221, 221);
    border-radius: 52px;
    width: 38px;
    height: 38px;
    text-align: center;
    font-size: 10px;
    color: rgb(32, 32, 32);
}

.circulo:hover {
    background: rgb(27, 37, 77);
    color: rgb(255, 255, 255);
    -webkit-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77);
    -moz-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77);
    box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.77);
}