* {
    margin: 0;
}

body{
    background-color: #60A5FA;
}

@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

* {
    margin: 0;
}

:root {
    --color-nav: #262626;
    --color-primary: #1c83e5;
    --color-grey: #525252;
    --color-off-white: #f3efe7;
    --color-off-white-light: #ededed;
    --color-section-shadow: #999999;
    --color-dark-blue: #1c2960;
}

body {
    font-family: 'PT Sans', sans-serif;
}

.section {
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 3px 5px 5px var(--color-section-shadow);
}

.off-white {
    background-color: var(--color-off-white);
    border-radius: 1rem;
}

.off-white-light {
    background-color: var(--color-off-white-light);
    border-radius: 1rem;
}

.highlight {
    color: var(--color-primary);
}


.style {
    font-size: 20px;
    color: var(--color-grey);
    letter-spacing: 0.2rem;
    font-family: 'Roboto Mono', monospace;
}

.link {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 22px;
    letter-spacing: 0.1rem;

}

.navigation {
    padding: 1rem;
    margin-bottom: 1rem;
    height: auto;
    width: auto;
    background-color: var(--color-nav);
    opacity: 0.99;
    position: sticky;
    top: -80px;
    z-index: 10;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 3px 3px 5px #242424;

}

.nav-heading {
    padding: 0.5rem;
    margin: 0.5rem;
    display: block;
}

.nav-heading>h2 {
    color: whitesmoke;
    font-weight: 100;
    letter-spacing: 0.1rem;
}

.nav-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;

}
@media screen and (max-width:768px){
    .nav-buttons{
        display:flex;
        justify-content: space-evenly;
        margin:auto;
    }
}

.nav-button {
    margin: 1rem;
    cursor: pointer;

}


.link {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 22px;
    letter-spacing: 0.1rem;

}



.popple_container {
    background-image: url("./images/pirate.svg");
    background-repeat: no-repeat center center;
    background-size: 1100px 800px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;

    @media screen and (max-width:768px) {
        padding: 10px;

    }
}

.heading {
    margin: 10px;
    padding: 10px;
    display: flex;
}

.heading>h1 {
    color: chocolate;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 700;
    font-size: 30px;
    background-color: #000;
    border-radius: 20px;
    padding: 10px;
    margin: 5px;
    border: 1px solid red;
}

.input {
    display: flex;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    
}



textarea {
    font-size:15px;
    margin: 10px;
    display: flex;
    width: 550px;
    height: 200px;
    background-color:transparent;
    border: 5px solid #374151;
    border-radius: 10px;

}

.btnContainer {
    margin: 5px;
    height: 30px;
    width: 80px;
    display: flex;
    flex-direction: flex-start;
    padding: 10px;
    background-image: url("./images/arrow.png");
    background-size: 100px 50px;
    border-radius: 10px;
    cursor: pointer;
}

.btn {
    background-color: transparent;
    border: none;
    color:transparent;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}

.output {
    margin: 10px;
    display: flex;
    flex-direction: column;

}

.outputHeadline {
    font-size: 20px;
    font-weight: 500;
    font-family: monospace;

}



#text-output {
    color:red;
    font-family: monospace;
    font-weight: 700px;
    font-size: 20px;
    border: 2px solid rgb(131, 53, 53);
    border-radius: 10px;
    width: 450px;
    height: 150px;
    display: block;
    margin: 1rem;
    padding: 1rem;
    background-color: transparent;
  
}