.card {
    background: rgba(50, 50, 50, 0.8);
    margin: 20px;
    padding: 20px;
    width: 500px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
}

.card:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
    transform: scale(1.01);
}

div.link {
    display: flex;
    align-items: stretch;
    gap: 10px;
    border: 1px solid black;
    border-radius: 5px;
    background-color: white;
}

.link_text {
    margin-left: 10px;
    flex: 5;
    font-size: 10px;
    align-self: center;
    word-wrap: anywhere;
    color: black;
}

.notfound_text {
    align-self: center;
    word-wrap: anywhere;
}

.link_button {
    flex: 1;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

a {
    text-decoration: none;
    color: rgb(169, 169, 169);
}

a:visited {
    text-decoration: none;
    color: rgb(169, 169, 169);
}

.card__tutorial,
.card__donate,
.card__input,
.card__link,
.card__icon {
    position: relative;
    text-decoration: none;
}


.card__input {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}


.card__tutorial {
    align-self: center;
    justify-self: center;
    text-align: center;
}

form {
    text-align: center;
    position: relative;
    transition: all 0.2s ease-in-out;
}


.selectize-control {
    width: 300px;
}

button {
    cursor: pointer;
    background: white;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(50, 50, 50, 0.3);
    width: 80%;
    padding: 1em;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.2);
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}


select,
input {
    background: white;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(50, 50, 50, 0.3);
    width: 250px;
    padding: 1em;
    margin-bottom: 2em;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.2);
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

select:focus,
input:focus {
    outline: none;
    box-shadow: 4px 4px 60px 8px rgba(0, 0, 0, 0.2);
}

a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 0%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s;
}

a:hover::after {
    width: 100%;
}

.card__icon {
    font-size: 30px;
}

.card__title {
    text-align: center;
    font-weight: 400;
}

.card__link {
    align-self: center;
    justify-self: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

b {
    color: gray
}

#donate-button {
    height: 40px;
}

.card__donate {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
}

.card__textbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    text-align: center;
    word-wrap: anywhere;
}


html {
    height: 100%;
}

body {
    background: url(background.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: rgb(255, 255, 255);
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}