/*        */
/* COLORS */
/*        */

/* blue: #3B557C */

/*       */
/* FONTS */
/*       */

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

/*           */
/* RESET CSS */
/*           */

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

/*            */
/* CUSTOM CSS */
/*            */

.container {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;

  min-height: 100vh;

  min-width: 280px;
}

.background-container {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 5rem;
}

.background-mask {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
}

.background-image {
  height: 100%;
  width: 100%;
  background-image: url("./assets/background.jpg");
  background-position: center;
  background-size: cover;
}

.content-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-row {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);

  display: flex;
  flex-flow: row nowrap;
  justify-content: center;

  padding: 0.5rem 0;
  box-sizing: border-box;

  position: fixed;
  /* 
  border-bottom-width: 1px;
  border-color: #1e2b3e;
  border-style: solid; */
}

.logo-container {
  width: 9rem;
}

.logo-container img {
  max-width: 100%;
}

.center-gap {
  min-height: 85vh;
  width: 100%;
}

.presentation-container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .presentation-container {
    padding: 3rem;
  }
}

.presentation-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  color: #3b557c;

  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
}

.presentation-row {
  display: flex;
  flex-flow: row wrap;
  gap: 3rem;
  justify-content: center;
}

.presentation-box {
  background-color: #3b557c;
  width: 280px;

  padding: 1rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .presentation-box {
    width: 400px;
  }
}

.presentation-box p {
  color: white;
}

.contact-container {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  width: fit-content;
  color: #3b557c;
  line-height: 1.7;
  text-align: center;

  display: flex;
  flex-flow: column nowrap;
  gap: 0.3rem;
}

.p-break {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.linkedin {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.linkedin-logo-container {
  width: 1.3rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.linkedin-logo {
  width: 100%;
}

.linkedin-link {
  color: #3b557c;
  text-decoration: none;
}
