@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Be Vietnam Pro', sans-serif;
}
.upload-container{
    width: 100%;
    height: 100vh;
    background-color: #355954;
}
.upload-container .upload{
    width: 50%;
    margin: auto;
    background-color: white;
    padding: 40px 20px;
    border: 1px solid #355954;
    border-radius: 10px;
    box-shadow: -1px 3px 11px -5px rgba(0,0,0,1);
-webkit-box-shadow: -1px 3px 11px -5px rgba(0,0,0,1);
-moz-box-shadow: -1px 3px 11px -5px rgba(0,0,0,1);
}
.upload-container .upload .text{
    text-align: center;
    margin-bottom: 20px;
}
.upload-container .upload .text h4{
    font-size: 22px;
    color: rgb(58, 57, 57);
}
.upload-container .upload .form{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border: 1px dashed rgb(99,52,96);
}
.upload-container .upload button {
    padding: 10px 14px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #633460;
    color: white;
    font-size: 14px;
    border-radius: 6px;
    width: 150px;
    font-weight: bold;
    margin: 20px 0;
}
.upload-container .upload button:hover{
    transition: .2s ease;
    background-color: rgb(23, 23, 248);
}
.form input[type=file]{
    margin-bottom: 10px;
	font-size: 17px;
	margin-top: 10px;
}
.form input[type=text]{
    width: 100%;
    padding: 8px 10px;
    border: 1px solid rgb(143, 143, 143);
    outline: none;
    font-size: 13px;
    margin: 8px 0;
}
.form input[type=text]:focus-within{
    transition: .1s ease;
    border: 1px solid rgb(132, 132, 247);
}

/*video player*/
.video-container{
    width: 100%;
    background-color: #1F1D2B;
}
.video-content{
    padding: 10px;
    border: 1px solid rgb(102, 100, 100);
    margin: 0 40px;
}
.video-content .vid-player{
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-content .vid-text{
    text-align: center;
}
.video-content .vid-text h1{
    color: white;
    font-size: 22px;
    margin: 10px 0 14px 0;
}
.video-content .vid-text p{
    color: rgb(139, 139, 139);
    padding: 0 60px;
    font-size: 12px;
}

#select1 {
width: 100%;
    font-size: 16px;
    height: 36px;
}
.text img {
    width: 100%;
    margin-bottom: 10px;}

 p.texto { padding-top: 10px;
padding-bottom: 5px;}

.resultado {
    margin: 0 auto;
    width: 800px;
    margin-top: 200px;
    padding: 30px;
    background-color: #355954;
    color: #fff;
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    border-radius: 20px;}

.button1 {
    padding: 10px 14px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #633460;
    color: white;
    font-size: 14px;
    border-radius: 6px;
    width: 150px;
    font-weight: bold;
    margin: 20px 0;
}


.preloader {
  width: 70px;
  height: 70px;
  border: 10px solid #eee;
  border-top: 10px solid #666;
  border-radius: 50%;
  animation-name: girar;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
