body {
	font-family: "Quicksand", sans-serif;
	margin: 0;
}

h1 {
    color: #0F4C81;
    font-family: 'Maitree', serif;
    font-weight: 600;
    margin: 30px 0 0;
    font-size: 50px;
}

h2 {
    color : #000;
    font-weight:bold;
    margin: 0;
}

h3 {
    color : #000;
    font-size: 14px;
}

a {
	color: #0F4C81;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
}

.title_container {
    width: 100%;
}

.title {
    text-align: center;
    margin-bottom: 50px;
}

form {
    padding: 30px 40px 30px 60px;
    margin: 30px auto 150px;
    float : center;
}

#translator {
    background: #fff;
}

.row {
    margin: 0 -5px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    float: left;
    width: 50%;
}

.card {
    display: flex;
    padding: 10px;
}

textarea {
    width: 98%;
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
    font-family: 'Roboto',arial,sans-serif;
    font-size: 20px;
    background-color: #fff;
    padding: 12px 12px 12px 12px;
    margin: 0 1%;
    transition-duration: 0.2s;
    resize: none;
}

.translate_button {
	background-color: #0F4C81;
	padding: 7px;
	width: 30%;
	color: #fff;
	border-width: 0;
	border-radius: 5px;
	margin: auto;
	display: block;
	transition-duration: 0.2s;
	cursor: pointer;
	font-weight: bold;
}

.translate_button:hover {
    background-color: #000;
}

#footer {
	background-color: #191E21;
	position: relative;
	width: 100%;
	overflow: hidden;
	color: #989898;
	font-size: 13px;
	padding: 32px 0px;
}

.footer {
	text-align: center;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0F4C81;
  }
  
li {
    float: left;
}
  
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 25px;
    text-decoration: none;
}
  
li a:hover {
    background-color: darkslategray;
}

/*
textarea:focus {
    border: 2px solid #0F4C81;
    box-shadow: 1px 2px 3px #0F4C81;
}

textarea:hover {
    border: 2px solid #0F4C81;
}
*/

.container {
    display: block;
    position: relative;
    padding-left:30px;
    margin-bottom: 12px;
    width: 70%;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
  
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}
  

.container:hover input ~ .checkmark {
    background-color: #ccc;
}
  
.container input:checked ~ .checkmark {
    background-color: #0F4C81;
}
  
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
.container input:checked ~ .checkmark:after {
    display: block;
}
  
.container .checkmark:after {
      top: 6px;
      left: 6px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
}  

.active {
    background-color: #4CAF50;
}

.extra_container {
	display: flex;
	width: 256px;
	margin: 0 auto 50px
}

.extra_button {
	color: white;
	padding: 5px 10px;
	text-align: center;
	display: block;
	font-size: 20px;
	margin: 4px auto;
	cursor: pointer;
	background-color: #0F4C81;
	border-radius: 20px;
	width: 90px;
	font-weight: 600;
	padding: 10px;
}

.extra_button:hover {
	box-shadow: 1px 4px 4px darkgray;
}

.extra_logo {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.translator-offline {
    text-align: center;
    padding: 50px 0 150px;
}

.translator-offline h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.translator-offline h2 {
    font-size: 32px;
}

.translator-offline a {
    font-size: 32px;
}

#btnAdd {
  background-color: #111111;
  border: 1px solid #111111;
  color: #FFFFFF;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  padding: .5rem 1rem;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
	h1 {
		font-size: 3.5em;
	}
	
	h2 {
		font-size: 1.6em;
	}
	
	form {
		margin: 1.5em 5%;
		padding: 0;
	}
	
	.column {
		width: 100%;
	}
	
	.card {
		display: block;
	}
	
	.translate_button {
		margin-bottom: 2em;
		width: 50%;
		font-size: 1em;
		padding: 3%;
	}

    .translator-offline h1 {
        font-size: 10vw;
        line-height: 1.5;
    }
	
    .translator-offline h2 {
        font-size: 6vw;
        line-height: 1.5;
    }

    .translator-offline a {
        font-size: 6vw;
        line-height: 1.5;
    }

}
