@charset "utf-8";    

* {box-sizing: border-box;}
        ul{
            display:flex;
            flex-basis: 100%;
            justify-content: space-around;
            color:white;
            background-color:black;
            list-style-type:none;
            font-size:18pt;
        }


        ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: scroll;
  background-color: darkblue;
}


li a {
  display: block;
  text-align: center;
  padding: 14px 16px;
}

li a:hover {
  background-color: orange;
}
        a{  
            color:darkorange;
            text-decoration: none;
        }
a:link {
  color: darkorange;
}


a:visited {
  color: lime;
}


a:hover {
  color: white;
        text-decoration:underline;
}


a:active {
  color: yellow;
}

#desc{
    text-align: center;
}


nav{
    display:flex;
    
}

i{
    font-size:10pt;
}

        body{
            background-color: black;
        }      

.header{
    display: flex;
    align-items: center;  
}

.header img {
 margin-left: 10px;

}

.header h1 {
  font-family: fantasy;
  color: orange;
  font-size: 46pt;
    margin:auto;
}

        .col {
  display: table-cell;
  padding: 16px;
  color:white;
}

.col img{
     max-width: 100%; 
        width: 100%;
    max-height:550px;
    
}

.col p{
    color:black;
    text-align:center;
    font-size:20pt;
    
} 

.col h3, h5{
    text-align: center;
}
 
#bad{
     background-color:red;
     border-radius: 25px;
}

#avg{
     background-color:lightgoldenrodyellow;
      border-radius: 25px;
}

#good{
     background-color:green;
      border-radius: 25px;
     
}

.unknown{
    background-color:aliceblue;
    border-radius: 25px;
}
hr{
    min-height:1px;
}


label{
    float:left;
    display:block;
    text-align: right;
    width:125px;
    padding-right:2em;
}


input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=email] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color:orange;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: darkorange;
}

.feedback {
  border-radius: 5px;
  background-color: lightgray;
  padding: 50px;
    font-size: 12pt;
}


label{
    float:none;
    text-align: left;
}

#insta{
    float: right;
    width: 60px;
height: 60px;
    }
#in{
      float: right;
    width: 60px;
height: 60px;
     
}
#mails{
      float: left;
    width: 60px;
height: 60px;
     
}

#sample{
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 10px;
}


video{
    max-height: 100%;
    max-width:100%;
}

table{
    color:white;
    width: 50%;
    border-color: beige;
    border: 2px solid beige
}
th{
    color:yellow;
    border: 1px solid beige
}
td{
    text-align: center;
    border: 1px solid beige
}

.scenes {
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.scenes h3{
    color:white;
    text-align: left;
}
@media only screen and (max-width: 320px)
   {
       
       ul{
        flex-direction: column;
    }
       .col{
           display: block; 
           text-align: center;
       }
       table{
            margin-left: 70px;  
       }
}