*{
    font-family: "Poppins", sans-serif;
}

body{
    margin: 0;
    padding: 0;
}

header{
    display: flex;
    width: 100%;
    background-image: url("./assets/worldmap.png");
    background-size: cover;
    height: 30vh;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
header p{
   color: white; 
   font-weight: 600;
   margin: 0;
}
h1{
    color: #32CD32;
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 43px;
    margin: 0;
    margin-bottom: 10px;
}
#logo{
    width: 95px;
    height: 85px;
}
#container{
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
form{
   width: 90%;
   height: 90%;
   border: 3px solid black; 
   border-radius: 10px;
   display: flex;
   flex-direction: column;
   justify-content: space-evenly;
   align-items: center;
   max-width: 300px;
}
#languages{
    display: flex;
    flex-direction: column;
    width: 80%;
    gap: 5px;
}

#text-input{
    background-color: #EFF0F4;
    border: none;
    overflow: hidden;
    resize: none;
    width: 200px;
    max-height: 100px;
    border-radius: 5px;
    padding: 10px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    max-width: 300px;
}
#translation{
 background-color: #EFF0F4;
    border: none;
    
    width: 200px;
    min-height: 50px;
    border-radius: 5px;
    padding: 10px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    max-width: 300px;   
}
#translation-text{
    margin: 0;
}
label{
   font-weight: 700;
   
}
.flag{
    width: 15px;
    height: 10px;
}
.instructions{
    font-weight: 700;
    color: #035A9D;
   
    
}
.action{
    background-color: #035A9D;
    font-family: "Poppins", sans-serif;
    color: white;
    font-weight: 700;
    padding: 8px 60px;
    border: none;
    border-radius: 6px;
    margin: 20px 0;
}
