* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

.background {
    background-image: url("https://app.finnlysport.com/web/web_image/viewimage/9c1d3687b6ee434f8969ba017a533be4");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.title {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    padding: 20px;
}

.content {
    padding: 20px;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.link-item {
    text-decoration: none;
    color: white; /* Set link text color to white */
}

.info-card {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.info-card:hover {
    background-color: #f1f1f1;
    color: black;
}

.info-card h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.info-card p {
    font-size: 14px;
}
