@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

html {
        font-family: 'Rubik', sans-serif;
}

body {
	height: 100%;
	background: linear-gradient(to right, #b3c8ff, #2153d1, #b3c8ff);
	background-size: cover;
	background-position: center top;
}

main {
	width: 750px;
	margin: 0 auto;	
}

.head { 
	background-image: url("https://maplecity.rf.gd/website/assets/header.png");
	background-size: 100% 120%;
}
			
.header {
	display: flex;
	//background-color: #eeeeee;
	font-size: 20px;
	font-weight: bold;
	align-items: center;
	justify-content: center;
	color: #eeeeee;
}

.header a { 
	color: #eeeeee;
}

.box {
	border: 1px solid black;
	background-color: #ffffff;
}
		
button, input, textarea {
	font-family: 'Open Sans', sans-serif;
	border-radius: 0%;
}
		
button, input:hover {
	font-size: 14px;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
}

td {
    border-top: 1px solid #cccccc;
    background-color: #ffffff;
    padding: 8px;
}
        
td:first-child {
    border-left: none;
}
td:last-child {
    border-right: none;
}

th {
    border-bottom: 1px solid #cccccc;
    background-color: #f2f2f2;
    color: #000000;
    padding: 8px;
    font-weight: 500;
}


/*
        goodbye old css!

        body {
            font-weight: 300; 
            height: 100%;
            margin: 0;
            background: linear-gradient(
                to bottom,
                #e7f0ff,
                #c8ddff
            );
            background-size: cover;
            background-position: center top;
            background-attachment: fixed;
        }

        h1, h2 {
            font-weight: 700;
        }
        h3, h4, h5, h6, p {
            font-weight: 300;
        }
        span {
            font-weight: 300;
        }

        main {
            width: 750px;
            max-width: 100%;
            margin: 0 auto;
            padding: 20px;
        }

        .head {
            background-image: url("https://maplecity.rf.gd/website/assets/header.png");
            background-size: 100% 120%;
            height: 150px;
            margin-bottom: 20px;
        }

        .header {
            display: flex;
            font-size: 20px;
            font-weight: bold;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            background-color: #ffffff;
            border-radius: 12px;
            border: 1px solid #cccccc;
            margin-bottom: 20px;
        }

        .header a {
            color: #1D1C1A;
            text-decoration: none;
        }
        .header span {
            color: #1D1C1A;
        }

        .box {
            border: 1px solid #cccccc;
            border-radius: 12px;
            background-color: #ffffff;
            padding: 20px;
            margin-bottom: 20px;
        }

        button, input, textarea {
            font-family: 'Open Sans', sans-serif; 
            border-radius: 6px;
            font-size: 14px;
            border: 1px solid #cccccc;
            padding: 6px 10px;
            margin-bottom: 10px;
        }

        button,
        input:hover {
            font-size: 14px;
        }

        table {
            border-collapse: separate;
            border-spacing: 0;
            border: 1px solid #cccccc;
            border-radius: 12px;
            background-color: #ffffff;
            width: 100%;
            overflow: hidden;
        }

        td {
            border-top: 1px solid #cccccc;
            background-color: #ffffff;
            padding: 8px;
        }
        
        td:first-child {
            border-left: none;
        }
        td:last-child {
            border-right: none;
        }

        th {
            border-bottom: 1px solid #cccccc;
            background-color: #f2f2f2;
            color: #000000;
            padding: 8px;
            font-weight: 500;
        }

*/
