@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&display=swap');

a,article,aside,audio,b,blockquote,body,canvas,caption,code,dd,del,div,dl,dt,em,embed,fieldset,footer,form,h1,h2,h3,h4,h5,h6,header,html,i,iframe,img,label,legend,li,menu,nav,object,ol,p,pre,s,section,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,tr,u,ul,video{margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}.screen-reader-text{display:none}
*{outline: none;box-sizing:border-box;-webkit-overflow-scrolling: touch;-webkit-font-smoothing: antialiased;position: relative;}

:root {
	--blue: #29aae3;
	--white: #fff;
	--black: #070707;
    --lightgrey: #f7f7f7;
	--grey: #888;
    --darkergrey: #686868;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    font-family: "Alumni Sans Pinstripe", serif;
    font-weight: 400;
    font-style: normal;
}

main {
    padding: 5%;
}

h1 {
    font-size: 48px;
}

h2 {
    margin: 25px 0 10px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

h3 {
    font-size: 36px;
    line-height: 48px;
}

h5 {
    text-transform: uppercase;
    margin: 100px 0 25px;
    font-size: 24px;
}

.grid {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
}

.grid > div {
    display: flex;
    height: 175px;
    align-items: center;
    justify-content: center;
    background: var(--lightgrey);
    margin: 5px;
    font-size: 24px;
    font-weight: bold;
}

div img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: grayscale(1);
    padding: 10%;
}

a {
    display: inline-block;
    margin: 50px 0;
    font-size: 36px;
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid blue;
}

a span {
    font-size: 24px;
    display: inline-block;
    margin-left: 5px;
}

@media (max-width: 820px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 500px) {
    main {
        padding: 50px 5%;
    }
    .grid {
        grid-template-columns: 1fr 1fr;
    }
    .grid > div {
        display: flex;
        height: 150px;
    }
}