@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mainDiv{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(128, 163, 177);
}
.container{
    background-color: rgb(9, 40, 49);
    border: 1px solid white;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}
 #typ{
     margin-left: 350px;
     margin-bottom: 12px;
     text-shadow: 2px 2px black;
     margin-top: 14px;
     font-weight: bold;
     color: beige;
     text-transform: uppercase;
     text-decoration: dotted;
 }
 #msg{
    padding-left: 40px; 
    color: rgb(221, 235, 228);
    text-decoration: underline;
 }
 #myWords{
     margin-top: 20px;
     margin-left: 22px;
     margin-right: 22px;
     margin-bottom: 10px;
     padding-left: 30px;
     padding-top: 17px;
     border: 1px solid black;
     border-radius: 7px;
     background-color: rgb(237, 243, 242);
     font-family: 'Bree Serif', serif;
}
.buttn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
}
#btn{
    background-color: rgb(154, 179, 166);
    padding: 12px;
    
    border: 1px solid rgb(80, 73, 10);
    border-radius: 50px;
    cursor: pointer;
    font-weight: bolder;
    font-family: 'Bree Serif', serif;
    box-shadow: 2px 2px rgb(99, 126, 115);
    transition: all 0s ease-in;
}
#btn:hover{
    color: black;
    background-color: rgb(16, 148, 119);
    height: 45px;
    width: 60px;
    
}

