html{
    min-height: 100vh;
    min-width: 100vw;
    overflow-x: hidden;
    color-scheme: dark;
    font-family: 'Courier New', Courier, monospace;

    display: grid;
    place-items: center;
    justify-content: center;
    align-items: center;
}

h1{
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    text-align: center;
}

.cards{
    width: 100%;
    max-width: 550px;
    margin: auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.card{
    width: 230px;
    aspect-ratio: 1/1.5;
    border-radius: 10px;

    background-color: black;

    display: flex;
    justify-content: center;
    align-items: center;

}
 
a{
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    height: 100%;
    width: 100%;

    font-size: larger;
    color: white;
    font-weight: bolder;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.674);
    transition: 0.2s ease-in-out;
}

.card:hover a{
    display: flex;
}

.card:nth-child(1){
    background-image: url(assets/finanz.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.card:nth-child(2){
    background-image: url(assets/weather.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.card:nth-child(3){
    background-image: url(assets/vokabel.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.card:nth-child(4){
    background-image: url(assets/infiniteMeme.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.card:nth-child(5){
    background-image: url(assets/pixelpaint.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.paypal{
    background: url(assets/Paypal_2014_logo.png);
    background-position: center;
    background-size: contain;
    background-color: black;
    background-repeat: no-repeat;
    display: flex;
}

