/* 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;
}

/* End RESET */

:root {
  --primary: #36024d;
  --yellow: #fbd005;
  --red: #de0402;
  --white: #ffffff;
  --whatsapp-color: #25d366;
  --facebook-color: #4267b2;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--primary);
  height: 100vh;
  max-height: 100vh !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  width: 100%;
  overflow: hidden;
}

.Header {
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding: 20px 3px;
}

.logo {
  width: 50%;
  height: auto;
  margin-bottom: 10px;
}

.title {
  color: var(--yellow);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitle {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.content {
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding: 10px 3px;
}

.content h3 {
  color: var(--yellow);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.content p {
  color: white;
  font-size: 0.9rem;
  line-height: 1.5;
}

.Contact {
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding: 10px 3px;
}

.Contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.Contact ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 10px;
  text-decoration: none;
  background-color: var(--white);
  opacity: 0.75;
  min-width: 225px;
}

.icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

@media screen and (min-width: 1024px) {
  .logo {
    max-width: 30%;
  }

  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .content h3 {
    font-size: 1.4rem;
  }

  .content p {
    font-size: 1rem;
  }

  .Contact ul li a:hover {
    transition: all 0.5s ease;
    opacity: 1;
  }
}

@media screen and (min-width: 1366px) {
  .logo {
    max-width: 20%;
    margin-bottom: 20px;
  }

  .Contact ul {
    flex-direction: row;
    padding-top: 20px;
  }
}
