/* =================================
   Global Styles & Resets
   ================================= */
body {
    margin: 0;
    padding: 0;
    font-family: monospace;
    font-weight: 600;
    text-align: center;
}

/* Reusable Button Styles */
.buttongithub, .buttoncv {
    padding: 8px 12px;
    text-decoration: none;
    color: rgb(57, 59, 212);
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.3s;
    font-weight: bold;
    margin: 5px;
    font-family: monospace;
    background: transparent;
    cursor: pointer;
}

.buttongithub:hover, .buttoncv:hover {
    border: 2px solid black;
}

.buttongroup {
    display: grid;
    justify-content: center; 
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
    width: 100%; 
}