@import url(https://p.typekit.net/p.css?s=1&k=gmz3lub&ht=tk&f=15498.15510&a=9277107&app=typekit&e=css);
/* BROWSER RESET */
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;
}

/* COLOR VARIABLES */
:root {
  --main-bg-color: #cbe4de;
  --secondary-bg-color: #7c9885;
  --accent-color: #2e4f4f;
  --dark-color: #2c3333;
  --white-ish: #fee6e3;
  --black: #111;
}
/* FONTS */

@font-face {
  font-family: 'roboto';
  src: url('https://use.typekit.net/af/9d5bd3/00000000000000007735a09f/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3')
      format('woff2'),
    url('https://use.typekit.net/af/9d5bd3/00000000000000007735a09f/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3')
      format('woff'),
    url('https://use.typekit.net/af/9d5bd3/00000000000000007735a09f/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3')
      format('opentype');
  font-display: auto;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}

@font-face {
  font-family: 'roboto';
  src: url('https://use.typekit.net/af/7f1b26/00000000000000007735a0ac/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3')
      format('woff2'),
    url('https://use.typekit.net/af/7f1b26/00000000000000007735a0ac/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3')
      format('woff'),
    url('https://use.typekit.net/af/7f1b26/00000000000000007735a0ac/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3')
      format('opentype');
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}

.tk-roboto {
  font-family: 'roboto', sans-serif;
}
/* CONTAINERS */
.page {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.wrapper {
  width: 100%;
  padding: 10%;
  flex-direction: row;
  text-align: center;
}
/* SPLIT SCREEN STYLES */
.split {
  width: 100%;
  height: 50%;
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px; 
}
.right {
  bottom: 0;
  background-image: linear-gradient(45deg, var(--secondary-bg-color), #b5b682);
}
.left {
  top: 0;
  background-color: var(--main-bg-color);
}

/* ELEMENT STYLES */
.h1 {
  font-family: 'roboto';
  color: var(--accent-color);
  font-style: normal;
  font-weight: 700;
  font-size: 4rem;
  text-align: center;
  text-shadow: 1px 1px 2px var(--white-ish);
  padding-bottom: 25px;
}
.p1 {
  font-family: 'roboto';
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--accent-color);
  padding-bottom: 15px;
}
input[type='file'] {
  display: none;
}
/* BUTTON STYLES */
.upload-button {
  align-items: center;
  background-color: var(--white-ish);
  border: 2px solid var(--black);
  border-radius: 8px;
  box-sizing: border-box;
  color: var(--black);
  cursor: pointer;
  display: flex;
  font-family: 'roboto', sans-serif;
  font-size: 1.1rem;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.upload-button:after {
  background-color: var(--black);
  border-radius: 8px;
  content: '';
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform 0.2s ease-out;
  z-index: -1;
}

.upload-button:hover:after {
  transform: translate(0, 0);
}

.upload-button:active {
  background-color: var(--white-ish);
  outline: 0;
}

.upload-button:hover {
  outline: 0;
}
/* CUSTOM STYLES */
.sum-container {
  align-items: center;
  background-color: var(--main-bg-color);
  border: 2px solid var(--dark-color);
  border-radius: 8px;
  font-family: 'roboto', sans-serif;
  padding: 5px 20px;
}
.header {
  width: 100%;
  max-height: 150px;
}

/* MEDIA BREAKPOINTS */
@media (min-width: 768px) {
  .page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .upload-button {
    padding: 0 40px;
  }
  .split {
    height: 100vh;
    width: 50%;
    position: fixed;
    left: auto;
    top: 0;
    overflow-x: hidden;
  }
  .right {
    right: 0;
    background-image: linear-gradient(
      45deg,
      var(--secondary-bg-color),
      #b5b682
    );
  }
  .left {
    left: 0;
    background-color: var(--main-bg-color);
  }
  .wrapper {
    width: 100%;
    padding: 10%;
    flex-direction: row;
  }
}

