@import url('https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap');

body {
    margin: 0;
    background-color: #FFFFFF;
    font-family: 'Courier New', Courier, monospace;
}

header {
    border: 1px solid rgb(0, 0, 0);
    background-color: #000000;
    padding: 10px;
    position: sticky;
    top: 0;
}

header img {
    transition: 0.2s;
}

header img:hover {
    scale: 1.1;
    transition: 0.2s;
}

.test {
    float: right;
    color: rgb(255, 255, 255);
}

.container {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    width: 90%;
    padding: 10px;
    margin: auto;
    margin-top: 10px;
    margin-top: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-container {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    width: 90%;
    padding: 10px;
    margin: auto;
    margin-top: 10px;
    margin-top: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}

.button {
    border: none;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    font-family: Georgia, 'Times New Roman', Times, serif;
    transition: 0.2s;
}

.button:hover {
    scale: 1.05;
    transition: 0.2s;
}

.input {
    border: none;
    border-radius: 10px;
    padding: 10px;
    margin: 5px;
    font-family: 'Quicksand', sans-serif;
    box-shadow: inset 0 4px 5px rgba(0, 0, 0, 0.1);
}