body {
    position: relative;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("../img/bg.png");
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    font-family: cursive;
    color: #ffffff;
    padding: 20px 0;
}

.logo img {
    position:relative;
    width: 30%;
    height: auto;
}

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

.link-box {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 25px;
    padding: 20px;
    margin: 10px;
    width: 75%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.863);
    height: 50px;
    display: flex;
    place-items: center;
    transition: transform 0.3s;
    text-decoration: none;
}

.link-box:hover {
    transform: scale(1.15);
}

.link-box img {
    position: relative;
    max-width: 50px;
    max-height: auto;
}

.link-box-in {
    position: relative;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    margin: auto;
}

footer {
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}