* {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}


#links-page {
    height: 100vh;
    background-image: url('/img/bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.links img{
    width: 350px;
    
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 45px;
}

.links a {
    padding: 1.5rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    border: 3px solid #ddd;
    border-radius: 50px;
    box-shadow: 7px 6px 5px 3px rgba(255, 255, 255, 0.51);
    -webkit-box-shadow: 7px 6px 5px 3px rgba(255, 255, 255, 0.51);
    -moz-box-shadow: 7px 6px 5px 3px rgba(255, 255, 255, 0.51);
    transition: 1s;
}

.links a:hover {
    background-color: #fff;
    color: #188ea8;
    border-color: #188ea8;
}