*{
    margin: 0px;
    padding: 0px;
    font-family: monospace;
}
body{
    height: 100vh;
    background-color: #ffffff;

}

header h1{
    /* width: 100vw; */
    display: block;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    background-color:#0077b6;
    /* transition: 2s ease-in; */
}
header .navbar{
    background-color: #48CAE4;
    padding: 0.5rem;
    color: white;
    /* width: 100vw; */
    /* margin-top: -10px    ; */
}
h5{
    left: 0;
    top: 0;
    display: inline-block;
    font-size: 1.5rem;
}
.navbar > .container{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.navbar .nav-link{
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}
.nav-link:hover{
    color: #FADA7A;
    /* background-color: aquamarine; */
}
.headers{
    display: flex;
    margin-top: 1rem;
    justify-content: space-evenly;
    background-color: #7eb5be;
}
.headers h2{
    display: inline-block ;
    background-color: rgb(117, 193, 255);
    padding: 1rem;
    font-size: 3rem;
    border-radius: 10px;
    border: 2px solid white;
}
#section{
    margin: 10px;
    padding: 10px;
    background-color:#2e1c1c ;
    border: 2px solid black;
    border-radius: 10px;

}
#p1{
    background-color: bisque;
    font-size: 4rem;
    width: auto;
    border-radius: inherit;
}
#p2{
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
    background-color: rgb(248, 248, 248);
    border-radius: inherit;
}

.container button{
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    margin-left: 45rem;
}

#output{
    width: 100%; 
    height: 100px; 
    border: 2px solid black; 
    margin-top: 10px; 
    margin-left: 10px;
    padding: 10px; 
    overflow: auto;
    font-size: 3rem;
}
#editor{
    width: 100%;
    height: 300px;
    border: 1px solid #ccc;
    
}

.cont{
    width: 95%;
    padding: 20px;
    height: auto;
    display: flex;
    justify-content: space-evenly;
}
.run {
    margin-left: 45rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
}

@media (max-width:480px){
    header h1{
        display: none;
    }
    .navbar{
        display: none;
    }
}