/* css reset */
@font-face {
  font-family: "Hadriano";
  src: url("../assets/font/HADRIANL.ttf")
    format("truetype");
}

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

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

/* CSS files add styling rules to your content */
body {
  line-height: 1;
  font-family: Hadriano;
  text-transform: uppercase;
  overflow: hidden;
  margin: 0 auto;
}

h1 {
  font-style: italic;
  color: #373fff;
}

a {
  text-decoration: none;
  color: inherit;
}

.f-left a {
  cursor: pointer;
}

.wrapper {
  position: relative;
  background: #051d35;
  width: 100%;
  height: 100vh;
}

.virtualexh{
  position: absolute;
  top:3vh;
  left:3vw;
  width:12rem;
  z-index:2;
  mix-blend-mode: difference;
  transition:400ms cubic-bezier(0,.69,.62,.99);
}

.virtualexh:hover{
  transform: rotateY(-45deg) rotateX(15deg);
}

.virtualexh img{
  width:100%;
}

.exhibition-title {
  position: absolute;
  width: 40vw;
  left: 50vw;
  top: 0;
  transform: translate(-50%);
}

.cert-container {
  position: absolute;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%);
}

#certificates img {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 33rem;
}

.cert_image {
  box-shadow: 0.25px 0.25px 1.75px 0.25px rgba(0, 0, 0, 0.35);
  width: 33rem;
}

.cert-1 {
  transform: rotate(5deg);
}

.f-container {
  position: fixed;
  width: 100vw;
  bottom: 0;
  color: white;
  font-size: 18pt;
  letter-spacing: 2pt;
  line-height: 26pt;
  padding-right: 8rem;
  z-index: 90;
  mix-blend-mode: difference;
}

.f-flex {
  display: flex;
  justify-content: space-between;
}

.f-banner {
  text-align: center;
  background: white;
  color: #051d35;
}

.f-container .f-left {
  text-align: left;
  margin-left: 3vw;
}

.f-container .f-center {
  text-align: center;
}

.f-container .f-right {
  text-align: right;
  margin-right: 3vw;
}

@media only screen and (max-width: 667px) {
  #certificates img {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 10rem;
  }

  .f-container {
    font-size: 0.55rem;
    line-height: 13pt;
  }
}


