@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    background-color: white;
}

h1, h2 {
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    text-align: center;
    font-weight: 450;
    -webkit-font-smoothing: none;
    font-smooth: never;
    font-style: normal;
    font-size: 64;
    margin-top: 5px;
	margin-bottom: 5px;
}

h3 {
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    text-align: center;
    font-weight: 400;
    -webkit-font-smoothing: none;
    font-smooth: never;
    font-style: normal;
    font-size: 26px;
    margin-top: 5px;
}


hr {
    border: 1px solid black;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.card {
    border: 2px solid black;
    box-shadow: 10px 20px 0 rgba(0, 0, 0, 0.65);
    padding: 10px;
    display: flex;
    flex-direction: column;
    width: 265px;
    height: 225px;
    box-sizing: border-box;
    background-color: white;
}

.iframecard {
    border: 2px solid black;
    box-shadow: 10px 20px 0 rgba(0, 0, 0, 0.65);
    padding: 10px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    box-sizing: border-box;
    grid-column: 1 / -1;
    width: 100%;
    background-color: white;
}

iframe {
 border: none;
}

a {
    color: blue;
    text-decoration: none;
    margin-left: 40px;
    line-height: 1.3;
    display: block;
}

p {
    color: gray;
    font-style: italic;
    margin: 0;
}