*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.f-t{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
header{
    display: flex;
    align-items: center;
    height: 120px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.fam-btn{
    height: 30px;
    width: 40%;
    cursor: pointer;
    border-radius: 20px;
    font-weight: 700;
    background-color: lightcyan;
}
.fam-btn:hover{
    transform: scale(1.05);
    transition: 0.2s;
}
.box-fam{
    gap: 8px;   
    padding: 8px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo{
    text-align: center;
    margin: 5px;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
}
.main {
  display: flex;
  justify-content: center;
  align-items: start; /* VERY IMPORTANT */
  width: 100%;
  height: 100vh;
  padding: 10px;
  background-color: #FAFAFA;
}

.paper {
    
  /* font-size: 50px; */
  width: 60%;
  height: 200vh;
  background-color: white;
  border: 2px solid black;
  padding: 0; /* remove all internal spacing */
  margin: 0;
  line-height: 1.2;
  resize: none;
  box-sizing: border-box;
  overflow: auto;
    padding: 10px;
}
.fam-siz{
    height: 30px;
    width: 60px;
    cursor: pointer;
    border-radius: 20px;
    font-weight: 700;
    background-color: lightcyan;
}
.fam-siz:hover{
    transform: scale(1.05);
    transition: 0.2s;
}
.box-siz{
    
    gap: 8px;   
    padding: 8px;
    /* flex-wrap: nowrap; */
    display: flex;
    justify-content: center;
    align-items: center;
}
