
section {
    position: relative;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 7em;
    color: var(--text);
    background-color: none;
    border-radius: 50px;
}

section h1,
section .sec-title{
    align-items: center;
    font-size: 3em;
    margin-bottom: 10px;
}

section a, a > span{
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
}
section a:visited{
    color: var(--primary);
}
section a:hover{
    color: var(--accent);
}

.uName{
    color: var(--text);
    font-weight: normal;
    text-decoration: none;
}
.uName:visited{
    color: var(--text);
}
.uName:hover{
    color: var(--primary);
    text-decoration: underline;
}

.box{
    /* box-shadow: 10px 10px var(--secondary);*/
    border: 1px solid var(--secondary); 
    margin: 1em 5em;
    padding: 1em 2em 2em 2em;
    border-radius: 1em;
    
    box-shadow: 0 4px 6px var(--secondary, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.box:hover {
    /* box-shadow: 0px 0px 10px 10px var(--secondary);
    transform: rotate(1deg); */
    transform: translateY(-10px);
    box-shadow: 0 8px 15px var(--secondary, 0.1);
}

.social-media {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px;
}

.logo{
    height: 1em;
    width: auto;
}

.account{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avatar {
    border-radius: 50%;
    height: 5em;
    width: auto;
    float: right;
    margin-left: 1em;
}

@media (max-width: 992px) {
    section {
        padding: 15px;
        margin: 7em 1em;
    }
}