body, body * {
	padding: 0;
	margin: 0;
	border: 0;
	display: flex;
	font-family: "Raleway", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	flex-direction: column;
    font-size: 12pt;
}

html, body {
    min-height: 100vh;
    width: 100%;
}

.raleway-<uniquifier> {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

span {
	flex-direction: row;
    gap: 10px;
}

.wrapper {
    padding: 10px;
}

.head, .foot {
	flex-direction: row;
	background-color: grey;
}

.head {
	justify-content: space-between;
}

.foot {
	justify-content: space-evenly;
	margin-top: auto;
}

.content {
    align-items: center;
}

.message {
    background-color: rgb(255, 203, 124);
    align-items: center;
}

.block {
    padding: 5px;
    gap: 15px;
}

.content .block, .message .block {
    width: 960%;
    max-width: 1080px;
}

button, input[type="submit"], input {
    padding: 7px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover {
    background: lightslategray;
}

input[type="text"] {
    cursor: text;
    flex-grow: 5;
}


h1 {
    font-size: 24pt;
    font-weight: 600;
}

h2 {
    font-size: 18pt;
    font-weight: 500;
}

h3 {
    font-size: 16pt;
    font-weight: 400;
}

h4 {
    font-size: 12pt;
    font-weight: 800;

ul {
    padding-left: 30px;
}

.results {
    border: 1px solid grey;
    border-radius: 15px;
}

