* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Doto', sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    background-image: url('/Assets/bg.png');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    width: 80%;
    max-width: 500px;
    padding: 60px 20px;
    color: #000000;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.card img {
    width: 160px;
    border-radius: 50%;
    font-weight: 600;
    margin-top: 20px;
}

.card p {
    font-size: 30px;
    margin: 10px auto;
    max-width: 330px;
}

.card .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.card .links img {
    width: 40px;
    height: 40px;
}

.lanyard-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.lanyard-container img {
    border-radius: 8px;
    width: 340px;
    height: auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.btn {
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    background-color: transparent;
    border: 1px solid white;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    margin: 30px 0 10px;
}

.btn:hover {
    cursor: pointer;
    background-color: rgb(0, 0, 0);
    font-weight: medium;
    box-shadow: 0 0 10px rgb(169, 205, 235);
    color: #fdfdfd;
}
