body {
    font-family: "Breezeblocks", "PT Sans", Calibri, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(125, 141, 133);
    color: white;
    overflow-x: hidden;
}
.registry-header{
    display: none;
}

.registry-card{
    aspect-ratio: 3 / 4;
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    background-color: rgba(255, 255, 255, 0.249);
    width: 30%;
    height: 40rem;
    margin-top: 4rem;
    border-radius: 20px;
}

.registry-card img{
    width: 100%;
    border-radius: 20px 20px 0 0;
    object-fit: contain;
}

.registry-card p{
    font-size: 5em;
    font-weight: 200;
    padding: 0;
    margin: 3rem auto;
    text-transform: none;
    letter-spacing: normal;

}
.registry-card button{
    margin-top: -1rem;
    width: 70%;
    height: 5em;
    border: none;
    border-radius: 10px;
    text-decoration: none;
}

.registry-card a {
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {

    .registry-header{
        display: flex;
        justify-content: center;
        font-size: 6rem;
        color: white;
        padding-top: 6rem;
    }
    .registry-card{
        width: 80%;
        height: 40%;
        align-items: center;
        justify-self: center;
    }
    .registry-card p{
        font-size: 4.6em;
        margin-top: 4rem;
    }
    .registry-card button{
        margin-top: -1rem;
        width: 70%;
        height: 5rem;
    }
}

@media only screen and (max-width: 400px) {
    .registry-card{
        width: 80%;
        height: 40%;
        align-items: center;
        justify-self: center;
    }
    .registry-card p{
        font-size: 3.5em;
        margin-top: 4rem;
    }
    .registry-card button{
        width: 70%;
        height: 3.5rem;
    }
    .registry-card a {
        color: rgb(0, 0, 0);
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
    }
}