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

@font-face {
  font-family: 'Norse-Bold';
  src: url('fonts/Norse-Bold.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



* {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}


h1, p, input, label, .createButton{
  font-family: Arial, Helvetica, sans-serif;
}

label{
  font-family: Arial, Helvetica, sans-serif;
  text-transform:uppercase;
  color:#636363;
  font-size: 10px;
  font-weight: bold;
}


button {
  all: initial;
}



:root {
  --logo: 70vh;

  --main: var(--logo);
  
  --body-color:white;
  --sidebar-color: white;
  --primary-color: rgb(86, 86, 236);
  --primary-color-light: #F6F5FF;
  --toggle-color: #DDD;
  --text-color: black;
  --test-color: black;
}


body{

  background-color: var(--body-color);
}

.flexContainer{
  display: flex;
}



/* Style - Begin */

.sidebar{
 
  position: fixed;
  top:0;
  left:0;
  height:100%;
  max-width: 600px;
  width:var(--logo);
  background-color: var(--test-color);
  
  

}

button{

  padding:10px 20px;
  background-color: rgb(42, 83, 42);
  color:white;
  border-radius: 10px;
  box-shadow: 1px 1px 2px 0px #292929;


}

.part1 {
  font-size: 30px;
  top: 50px;
  width: 100%;
  margin-top: 70px;
  padding:40px 50px 15px 40px;
  border: 1px solid rgb(11, 34, 23);
  
}


.part2{
  position: relative;
  font-size: 20px;
  width: 100%;
  margin-top: 10px;
  padding-left:40px;
  border: 1px solid rgb(0, 255, 128);
}

.part3{
  position: relative;
  font-size: 20px;
  width: 100%;
  margin-top: 70px;
  padding:10px 0px 0px 40px;
  border: 1px solid rgb(0, 81, 255);
}

.formsContainer{
  position: relative;
  width: 100%;
  margin-top: 100px;
  padding:20px 0px 0px 40px;
  border: 1px solid red;
}



button:hover{
  box-shadow: 1px 1px 5px 0px #000000;
  cursor: pointer;
}


.card-container {
  position: relative;
  width: 100%




}
.card-image {
  position: absolute;
  width: 100%;
  z-index: -1;
}
.card-body {
  position: absolute;
  width: 100%;
  background: black;
  opacity: 0.6;
  color: white;
  top: 8rem;
  text-align: center;
  font-size: 1.2em;
  font-family: roboto;
 
}
.card-heading {
  position: absolute;
  width: 100%;
  display:flex;
  justify-content: center; /* align horizontal */
  align-items: center; /* align vertical */
  background-color: black;
  font-family: Norse-Bold;
}

.author {
  position:absolute;
  bottom: 10px;
  left: calc(var(--logo)/4);
  color: white;

  
}

.main{

  position: relative;
  left: var(--main);  
  /*background-color: #000000;*/

}

.card-odin-logo{
  padding: 20px;
  width: calc(var(--logo)/2.03);
  
}

.card-odin-text{
  padding: 20px;
  width: calc(var(--logo)/2);
  background-color: black; /* design delete */
  font-size: 100px;
}

.createButton{
  background-color: #596D48;
  color: white;
}

.loginButton{
  color:#596D48;
  font-weight: bold;
}