/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 10/02/2023, 15:31:09
    Author     : BRUNO
*/

main{
    width: 100%;
    height: 670px;
    
    display: flex;
    overflow-y: scroll;
    
}
::-webkit-scrollbar {
  width: 2px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background-color: #dcdcdc;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background:none;
}

iframe{
   
    height: 100%;
    flex-grow: 1;
}

@media only screen and (max-width:820px){
    main{
        display: block;
    }
    iframe{
        width: 100%;
    }
}