:root {
  --dark: rgb(108, 85, 85);
  --primary: rgb(191, 160, 160);
  --accent: rgb(255, 191, 169);  
}

@font-face {
   font-family: Arial;
   src: url(arial.ttf);
}

@font-face {
   font-family: Arial Black;
   src: url(arial_black.ttf);
}

*{
    -webkit-tap-highlight-color: transparent;
}

body
{
	margin: 0px;
	padding: 0px;
	user-select: none;
}

header
{
	margin-top: 10px;
	background-color: var(--dark);
	width: 100%;
	height: 250px;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

footer
{
    background-color: rgba(255,255,255,0.8);
	color: var(--red);
	position: fixed;
	padding-right: 5px;
	padding-bottom: 5px;
	bottom: 0px;
	left: 0px;
	width: 100%;
	text-align: left;
	font-family: Arial Black;
	font-size: 10px;
}



.photo
{
	background: url("../images/Kelvin.png");
	background-size: cover;
	width: 150px;
	height: 150px;
	margin: 0 auto;
	border-style: solid;
  	border-width: 6px;
  	border-color: white;
  	border-radius: 225px;
}

.photo .tooltip {
  visibility: hidden;
  width: 250px;
  background-color: var(--primary);
  color: white;
  font-family: Arial Black;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}

.photo:hover{
  border-color: var(--accent);
  cursor: pointer;
}
.photo:hover .tooltip {
  visibility: visible;
}

.name
{
	font-size: 40px;
	color: var(--primary);
	font-family: Arial Black;
}

.menu>a
{
	font-family: Arial;
	text-decoration: none;
	color: white;
	margin: 25px;
	font-size: 20px;
}

.menu>a:hover
{
	color: var(--accent);
	text-shadow: 2px 2px 2px;
}

.content
{
	width: 100%;
	margin-top: 25px;
	text-align: center;
  font-family: Arial;
  font-size: 20px;
}

.title
{
	font-family: Arial Black;
	font-size: 18px;
	color: var(--dark);
}

input
{
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 8px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.carousel
{
 margin-left: auto;
 margin-right: auto;
 position: relative;     

 width: 1050px;
}

.container
{
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;

  width: inherit;
  height: 250px;

  transform: translateY();
}
.container::-webkit-scrollbar {display: none;}
.container{-ms-overflow-style: none;scrollbar-width: none;}

.item
{
  flex: 0 0 auto;

  margin-right: 10px;
  margin-left: 10px;
  padding: 15px;
  width: 300px;
  text-decoration: none;

  background-color: var(--primary);
  border-radius: 10px;
  text-align: left;
}

.item .title
{
  font-family: Arial Black;
  font-size: 20px;
  color: white;
}

.item img
{ 
  margin-top: 20px;
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.item:hover
{
  background-color: var(--accent);
}

.navigation
{
  position: absolute;
  top: 40%;

  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;

  color: var(--dark);
  font-weight: bold;
  font-size: 50px;

  user-select: none;
}
.navigation:hover{color: var(--accent);}
.prev{left:-50;}
.next{right:-50;}

@media only screen and (max-width: 1200px){
  .carousel
  {
   width: 345px;
  }

  .navigation
  {
    visibility: visible;
  }
}