@import url('https://fonts.googleapis.com/css2?family=Jersey+20&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body{
    background-color: #212529;
    min-height: 100vh;
    margin: auto;
    color: #fff;
    font-family: "Jersey 20", sans-serif;
}

.profile-picture{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 9rem;
}

h3 {
    text-shadow:  0px 5px 15px rgba(0, 0, 0, 0.35);
}

.link-button{
    width: 100%;
    max-width: 680px;
    text-align: center;
    font-size: 1.2rem;
    font-family: 400;
    display: inline-block;
    padding: 0.8rem;
    border-radius: 0.5rem;
    color: #010b24;
    background-color: #5e6a75;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.links-group-button{
    width: 100%;
    max-width: 680px;
    text-align: center;
    font-size: 1.2rem;
    font-family: 400;
    display: inline-block;
    padding: 0.8rem;
    border-radius: 0.5rem;
    color: #010b24;
    background-color: #5e6a75;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.links-group-button[aria-expanded='true'],
.link-button:hover, .links-group-button:hover{
    background-color: #010b24;
    color: #fff;
}

.links-group-button i {
    font-weight: 400;
    width: 30pt;
    display: block;
    float: right;
    margin-top: 4pt;
}

.links-group-button{
    .bi-chevron-down{ display: inline;}
    .bi-chevron-up{ display: none;}
}

.links-group-button[aria-expanded='true'] {
    .bi-chevron-down{ display: none;}
    .bi-chevron-up{ display: inline;}
}

.links-group-container{
    margin: 0 20pt 10pt 20pt;
}

.links-group-container a{
    margin-top: 10pt;
}

a{
    text-decoration: none;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    line-height: 0;
    margin-right: 4px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border: 1px solid #fff;
}

.social-links a:hover{
    background: #5e6a75;
}