@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/*Reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, big, cite, code,
del, em, img, ins, q, s,
small, strong, sub, sup,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, audio, canvas,
datalist, details, dialog, figure, footer,
header, mark, menu, meter, nav, output,
progress, section, time, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
}

/* Base */
ol, ul, menu {
    list-style: none;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-image: linear-gradient(90deg, #fafafa, #FFFFFF);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-image: url("bkg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

button {
	position: absolute;
	top: 20px;
	right: 20px;
	border: none;
	border-radius: 7px;
	padding: 10px 20px;
	outline: none;
	cursor: pointer;
	color: #FFF;
	background-color: #f50057;
	font-weight: bold;
	text-transform: uppercase;
	box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}

button a {
	text-decoration: none;
	color: #FFF;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40%
}

.hv-logo {
    margin-right: 40px;
    width: 450px;
    height: 230px;
}

.hv-site-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hv-site {
    padding: 4px 10px;
    text-align: center;
    border-radius: 5px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hv-site-link {
    text-decoration: none;
}

.flag {
    width: 60px;
    height: 35px;
    margin-right: 10px;
}

.hv-footer {
    color: #212121;
    text-align: center;
    position: absolute;
    bottom: 15px;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 424px) {
	body {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
	}

	button {
		position: initial;
	}

    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hv-site-list {
    	display: flex;
    	flex-direction: column;
    	align-items: flex-start;
    	justify-content: center;
    }

    .hv-logo {
        width: 300px;
        height: 140px;
        margin: 0 auto;
    }

    .hv-footer {
    	position: initial;
        margin: 10px auto;
        text-align: center;
        font-size: 12px;
    }

}

@media screen and (max-width: 767px) and (min-width: 425px) {
	body {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
	}

	button {
		position: initial;
	}

    .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .hv-site-list {
    	display: flex;
    	flex-direction: column;
    	align-items: flex-start;
    	justify-content: center;
    }

    .hv-site {
    	margin: 5px 0;
    }

    .hv-logo {
        width: 300px;
        height: 140px;
        margin: 0 auto;
    }

    .hv-footer {
    	position: initial;
        margin: 10px auto;
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-height: 767px) and (min-height: 425px) {
	body {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
	}

	button {
		position: initial;
	}

    .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .hv-site-list {
    	margin-top: 40px;
    	display: flex;
    	flex-direction: column;
    	align-items: flex-start;
    	justify-content: center;
    }

    .hv-site {
    	margin: 5px 0;
    }

    .hv-logo {
        width: 300px;
        height: 140px;
        margin: 0 auto;
    }

    .hv-footer {
    	position: initial;
        margin: 10px auto;
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    body {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
	}

	button {
		position: initial;
		font-size: 20px;
	}

    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hv-site-list {
    	margin-top: 50px;
    	display: flex;
    	flex-direction: column;
    	align-items: flex-start;
    	justify-content: center;
    }

    .hv-site {
    	margin: 15px 0;
    	font-size: 22px;
    }

    .hv-logo {
        width: 450px;
        height: 220px;
        margin: 0 auto;
    }

    .hv-footer {
    	position: initial;
        margin: 10px auto;
        text-align: center;
        font-size: 16px;
    }
}