body{
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    grid-template-areas: "h h h h" " n n n n" " m m m m" " m m m m" " m m m m" " m m m m";

}
header{
    grid-area: h;
    text-align: center;
    background-image: linear-gradient(black,darkblue);
    color: white;

}
nav{
    grid-area: n;

}
main{
    grid-area: m;
    text-align: center;
    padding: 2rem;
}

.navbar{
    display: flex;
    justify-content: space-around;
    background-image: linear-gradient(darkblue,lightblue);
}
.navbar>div{

}
.navbar>div>a{
    text-decoration: none;
    color: white;
    font-size: larger;
}

#sqa{
    width: 100%;
    height: 200px;
}

option{
    width: fit-content;
    height: fit-content;
}
form{
    padding: 20px;
}

.frame{
    flex-grow:1 ;
    margin: 0;
    padding: 0;
    border: 0;
   /* height: 500px;
    width: 100%;*/
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

}
.result{
    display: flex;
    margin: 0;
    padding: 0;
    resize: both;
    width: 100%;
    height: 500px;
    position: relative;


}

.login{
    height: fit-content;
    width: min-content;
    align-content: center;
    border: 3px solid black;
}

img{
    max-width: 100%;
    height: auto;
}
.download{
    color: black;
    text-decoration: none;
}
.btn_flex{
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}
.btn_flex>div{
    padding: 3px;
}
.btn_flex>div>button{
    background-color: lightblue;
    height: 40px;
}
.submit{
    background-color: lightblue;
    color: black;
    height: 40px;
}