
@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@400;700&display=swap');

body {
    font-family: 'Gothic A1', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #55CDFC;
	color: FF0090;
}

table {
	font-family: 'Gothic A1', sans-serif;
	font-size: 18pt;
	border:  2px solid #F7A8B8; 
}
td {
	border:  2px solid #F7A8B8; 
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input[type="text"] {
    margin-bottom: 10px;
    padding: 10px;
    width: 250px;
    border: 2px solid #F7A8B8; 
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #F7A8B8; 
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #FF82A9; 
}

p {
	text-align: center;
}
