body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: rgb(0, 3, 26);
    display: flex;
    justify-content: center;
    align-items: center;
}

.links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.link {
    padding: 45px;
    border-radius: 20px;
    background-color: #1c1b27;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent; /* Initial border is transparent */
    transition: background-color 0.3s, border-color 0.3s, fill 0.3s; /* Smooth transition for hover effect */
}

.link:hover {
    background-color: #303242; /* Lighter background on hover */
    border-color: #555; /* Add border on hover */
}


.link svg { 
    fill: #888; /* Initial SVG color */
    width: 100px;
    height: 100px;
    transition: fill 0.3s; /* Smooth transition for hover effect */
}

.link:hover svg {
    fill: #d9e7ee; /* Lighter SVG color on hover */
}

@media (max-width: 500px) {
  	.link {
        width: 75px;
        height: 75px;
    }
}
