
*{
    box-sizing: boarder-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
  }

body {
background-color: slategray;
color: white;
padding: 1 rem;
display: grid;
grid-template-columns: repeat(1, minmax(0, 1fr));
gap: 6rem;
}

.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.NAVIGATION_TEXT_ABOUT_ME{
padding: 1rem; 
color: var(--color-highlight);
text-decoration: none;
cursor: default;
}

.NAVIGATION_TEXT_ABOUT_ME:hover{
color: orange;
text-decoration: none;
cursor: default;
transition: 0.5s;
}


h1{
color: white;
padding: 1rem;
}
 
p{
  padding: 1rem;  
  display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    line-height: 1.5rem;
}

video {
    width: 40%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border: 2px solid #ccc;
    border-radius: 5px;
}

video {
    height: auto;
}
