@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Press+Start+2P&display=swap');


body {
    background-color: rgb(180, 101, 111);
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto; 

    
}


button{
    width: 10rem;
    height: 5rem;
    background-color: rgb(239, 233, 174);
    color:rgb(180, 101, 111);
    border-style:dashed
}

button::after{
    color: rgb(239, 233, 174);
    background-color:rgb(180, 101, 111);
}

header{
    margin: 2rem;
    display: block;
}

h1 {
    color: rgb(239, 233, 174);
    text-align: center;

}

textarea {
    width: 90%;
    height: 10rem;
}

input {
    width: 90%;
    height: 2rem;
    display: block;
    margin-bottom: 1rem;
}

footer {
    position: sticky;
    top: 90vh;
    padding-top: 2rem;
    text-align: center;
   color: rgb(239, 233, 174);
}

#hero {
    font-family: "Press Start 2P", system-ui;
    text-align: center;
    line-height: 5rem;
    font-size: medium;

}

#nav {
    display: flex;
    flex-direction: row;
    padding-bottom: 2rem;
}

a {
    text-decoration: none;
    color: rgb(99, 22, 29);
    margin: auto;    
    cursor: pointer;
}

a:hover {
     color: rgb(239, 233, 174);
}

a:visited {
    text-decoration: rgb(114, 114, 114), wavy, line-through, 1;
    color: rgb(114, 114, 114);
}

section {
    margin: 1rem;
    padding: 2rem;
    background-color: rgb(255, 255, 255, .7);
    border-style: dotted;
    border-radius: 3pt;
    background-blend-mode: lighten;
}

#mnContainer{
    margin: auto;
    max-width: 1200px;
}

.inactive {
    display: none;
}

.invalid_input{
    background-color: pink;
}

@media (width <=900px) {

    .nav>a{
        margin-right: 1rem;
    }

    #hero {
    font-family: "Press Start 2P", system-ui;
    text-align: center;
    line-height: 3rem;
    font-size: medium;

}


    body {
 
        font-size: larger;
        overflow-y: scroll;
        scroll-behavior: smooth;
        
    }

    textarea {
        width: 90%;
        height: 10rem;
    }

    input {
        width: 90%;
        height: 2rem;
        display: block;
        margin-bottom: 1rem;
    }
}