@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	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
}

blockquote,
q {
	quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: "";
	content: none
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

body {
	background-image: url(./img/small.jpg);
	background-size: 120%;
	background-position: 50%;
	text-transform: uppercase;
	font-family: Tahoma, Helvetica, sans-serif;
	font-size: 10px
}

@media screen and (min-width:600px) {
	body {
		background-image: url(./img/medium.jpg);
		background-size: 130%;
		font-size: 15px
	}
}

@media screen and (min-width:1280px) {
	body {
		background-image: url(./img/large.jpg);
		background-size: 110%
	}
}

a {
	background-color: rgba(0, 0, 0, .4666666666666667);
	text-decoration: none !important
}

a .hover-main {
	display: none;
}

a:hover {
	background-color: transparent;
	transition: .3s
}

a:hover img {
	-webkit-filter: drop-shadow( 3px 3px 15px rgba(0, 0, 0, .7));
	filter: drop-shadow( 3px 3px 15px rgba(0, 0, 0, .7));
	/* Similar syntax to box-shadow */
}

a:hover .brand-title {
	text-shadow: 0px 0px 7px rgba(0,0,0,0.5);
	transition: .3s
}

a:hover .hover-main {
	display: block;
}

a:hover .image-main {
	display: none;
}	

.container {
	min-height: 100vh;
	display: flex;
	flex-direction: column
}

@media screen and (min-width:1280px) {
	.container {
		flex-direction: row
	}
}

.banner {
	width: 100%;
	text-align: center;
	background:white;
}

.banner img {
	max-width: 300px;
	margin: 25px;
}

.container .section {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50vh
}

@media screen and (min-width:1280px) {
	.container .section {
		width: 50vw;
		height: 100vh
	}
}

.container .section .logo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100vw
}

@media screen and (min-width:600px) {
	.container .section .logo-container {
		width: 50%
	}
}

@media screen and (min-width:1280px) {
	.container .section .logo-container {
		width: 80%;
		max-width: 400px;
	}
}

.container .section .logo-container img {
	width: 70%;
	max-width: 300px;
}

.container .section .first-logo {
	flex-direction: column-reverse
}

@media screen and (min-width:1280px) {
	.container .section .first-logo {
		flex-direction: column
	}
}

@media screen and (min-width:600px) {
	.container .second-section {
		justify-content: flex-start
	}

	.container .first-section {
		justify-content: flex-end
	}
}

@media screen and (min-width:1280px) {

	.container .first-section,
	.container .second-section {
		justify-content: center
	}
}

.container .brand-title {
	font-family: "Open Sans", Arial, sans-serif;
	color: #f5f5f5;
	text-align: center;
	padding: 2vh;
	font-size: 40px;
}

@media screen and (min-width:1280px) {
	.container .brand-title {
		font-size: 50px
	}
}

.footer {
	margin-top: -4vh;
	display: flex;
	align-items: center;
	justify-content: center
}

@media screen and (min-width:600px) {
	.footer {
		max-height: 3vh
	}
}

.footer p {
	width: 90%;
	color: #838383;
	text-align: center
}

