/************************/
/*SportsMadison Landing*/
/************************/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html,
body{
    width: 100%;
    height: 100%;
}

body{
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.landing_background{
    width: 100%;
}

.landing_logo{
    width: 100%;
    max-width: 496px;
    margin-bottom: 80px;
}

.links_cotainer{
    /*position: absolute;
    top: 30px;
    left: 50px;*/
    width: 100%;
    max-width: 400px;
}

.links_cotainer li{
    margin-bottom: 20px;
}

.links_cotainer a{
    background-color: #025ea4;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    padding: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

@media (min-width: 769px){
    body{
        background: url(../img/desktop_bg.png);
        background-position: right bottom;
        background-size: cover;
        padding-top: 30px;
        padding-left: 50px;
    }

    .mobile_bg{
        display: none;
    }
}

@media (max-width: 768px){
    body{
        position: relative;
    }

    .links_cotainer{
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px;
        box-sizing: border-box;
        width: 80%;
    }

    .mobile_bg{
        width: 100%;
    }

    .landing_logo{
        margin-bottom: 20px;
    }

    

    .links_cotainer li {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px){
    .links_cotainer a{
        font-size: 16px;
        padding: 10px 14px;
    }
}