@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color:gainsboro;
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
}



/***************************************************/
/***************************************************/
/*comps*/

.comps {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.comps section {
	margin: 10px;
}

h2 {
	margin-bottom: 10px;
    color: black;
    font-weight: 400;
}

img {
	width: 350px;
}