body {
    margin: 0;
    padding: 0;
    background: #ffffd6;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px;
    min-height: 100vh;
}

.card {
    background: #201f1f;
    width: 500px;
    max-width: 95%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 15px;
    box-shadow: #878787 0 13px 15px;
}

.logo {
    max-width: 100%;
    width: 350px;
    margin-bottom: 25px;
}

.logo > img {
    width: 100%;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.link {
    width: 85%;
    height: 5vh;
    background: white;
    border-radius: 30px;
    border: solid 3px #ff5400;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    text-decoration: none;
    text-underline: none;
    max-width: 350px;
}

.link-name {
    color: #ff5400;
    font-family: 'Staatliches', cursive;
    font-size: 32px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.link-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.link-logo > img {
    width: auto;
    height: 100%;
}