/* default */

body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

@font-face {
  font-family: wingdings; /* set name */
  src: url(assets/Wingdings\ 2.ttf); /* url of the font */
}

/* right */

.right {
    width: 65%;
    margin: 0;
    background: url(/assets/shark.gif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: rgb(233, 131, 48) groove 5px;
}

/* left */

.left {
    display: flex;
   width: 35%;
   min-width: 500px;
   height: 100vh;
   margin: 0;
}

.leftheader {
    height: 300px;
    background: url(/assets/map.png);
    background-size: cover;
    background-position: center;
    color: rgb(233, 131, 48);
}

.leftmain {
    background:  rgb(5, 14, 29);
    height: 100%;
    padding: 20px;
}

/* icons */

.icon {
    height: 50px;
    width: 50px;
    border: rgb(233, 131, 48) groove 2px;
}

.iconleft {
background: url(/assets/pfp1.jpeg);
background-size: contain;
background-repeat: no-repeat;
}

.iconright {
background: url(https://i.pinimg.com/474x/a5/44/49/a54449c5fceedaf24918ff36d9f3a682.jpg);
background-size: cover;
background-repeat: no-repeat;
}


/* messages */

.message1 {
    font: 20px wingdings;
   position: relative;
	background: #50af9d;
	border-radius: .4em;
  height: 90px;
  width: 50%;
  margin: 13px 40px;
  padding: 10px;
}

.message1:after {
    content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 22px solid transparent;
	border-right-color: #50af9d;
	border-left: 0;
	border-bottom: 0;
	margin-top: -11px;
	margin-left: -22px;
}

.message2 {
    font: 20px wingdings;
   position: relative;
    background: #4fd8a2;
    border-radius: .4em;
  height: 100px;
  width: 50%;
   margin: 15px 40px;
     padding: 10px;
}

.message2:after {
    content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 22px solid transparent;
	border-left-color: #4fd8a2;
	border-right: 0;
	border-bottom: 0;
	margin-top: -11px;
	margin-right: -22px;
}

.messagetype {
    font: 20px wingdings;
   position: relative;
    background: #4fd8a2;
    border-radius: .4em;
  height: 50px;
  width: 50%;
   margin: 15px 40px;
     padding: 10px;
}

.messagetype:after {
   content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 22px solid transparent;
	border-left-color: #4fd8a2;
	border-right: 0;
	border-bottom: 0;
	margin-top: -11px;
	margin-right: -22px;
}

.leanright {
    display: flex;
    justify-content: right;
       align-items: center;
}

.leanleft {
     display: flex;
   justify-content: left;
   align-items: center;
}
