* {
    font-family: "Nunito", serif;
    box-sizing: border-box;
}

.wrapper {
    background-image: url('../images/bg.jpg');
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.logo-wrapper {
    text-align: center;
    height: 150px;
}

.logo-wrapper img {
    height: 100px;
    margin-top: 30px;
}

.links-container {
    width: 100%;
    max-height: calc(100% - 100px);
    overflow-y: auto;
    color: white;
    padding: 20px 20px 100px;
    margin: 0 auto;
}

.links-container div {
    height: 160px;
    width: 620px;
    background-color: rgba(217, 217, 217, 0.08);
    border-radius: 10px;
    padding: 10px 20px;
    margin: 0 auto 30px;
    position: relative;
}

.links-container h2 {
    color: #e8ebf3;
    margin-bottom: 10px;
    font-size: 18px;
    opacity: 0.8;
}

.links-container p {
    color: #e8ebf3;
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.links-container a {
    background-color: #628961;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 25px;
    position: absolute;
    right: 20px;
    bottom: 25px;
}

@media (max-width: 768px) {
    .links-container div {
        width: 100%;
        height: auto;
        padding-bottom: 60px;
    }
}