﻿/* === 2020.06.03 FGH */

/* === CSS variables */

/* Fixed values */
:root {
    /* Logo dark green */
    --light-color: #aaccff;
}

body, html {
    margin: 0;
    padding: 15px;
    border: none;
    overflow: hidden;
    background-color: var(--light-color);
}

body {
    font-family: "Raleway", sans-serif;
}

a {
      text-decoration:none;
   }

.box{
	display: inline-block;
	width : 100%;
	text-align: center;
	background: green;
	border: 5px dotted black;
	
}	

@media screen and (min-width: 1000px) {
	.box{
		width : 30%;
		text-align: center;
		background: green;
	}	
}

