/*** rpdesmond.com - style.css ***/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    }

.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    width: 100vw;
    height: 100vh;
    }

.link-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    color: #fff;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    }

    .link-box:nth-child(1) { background-color: #e04c2b; }
    .link-box:nth-child(2) { background-color: #2b9fde; }
    .link-box:nth-child(3) { background-color: #2bde4c; }
    .link-box:nth-child(4) { background-color: #de2b91; }
    .link-box:nth-child(5) { background-color: #e0c72b; }
    .link-box:nth-child(6) { background-color: #892bde; }
    .link-box:nth-child(7) { background-color: #2bdecc; }
    .link-box:nth-child(8) { background-color: #e0682b; }
    .link-box:nth-child(9) { background-color: #de2bc3; }
    .link-box:nth-child(10) { background-color: #4ce02b; }
    .link-box:nth-child(11) { background-color: #2b68de; }
    .link-box:nth-child(12) { background-color: #de2b2b; }
    .link-box:hover { filter: brightness(0.85); }

.link-box img {
     width: 70px;
     height: auto;
     margin-bottom: 10px;
     }

.link-box span {
     text-decoration: none;
     color: #fff;
     font-size: 14px;
     font-weight: bold;
     display: block;
     }
