.SM-Info-Text {
    color: var(--text);
    font: var(--Font-PAll);
    text-align: center;
    width: 60vw;
    margin-bottom: 40px;
    margin-top: 40px;
    text-wrap: balance;
}
*{
    text-decoration: none;
}

.SM-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 120px;
}

.SM-LBox-container {
    font: var(--Font-PAll);
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 612px;
    height: 53px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--foreground);
    padding: 1px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease; 
    border: 3px solid var(--border);
}
.SM-LBox-container:hover {
    transform: scale(1.1); 
}     
        .SM-LBox-Image {
            font-size: 20px;
            padding-left: 5px;
            color: var(--Text);
        }
        
        .SM-LBox-Text {
            text-align: center;
            flex-grow: 1;
            color: var(--text);
        }

.Centered{
    align-items: center;
}