#info {
	justify-content: center;
	text-align: center;
	text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
}

h1 {
	color: green;
}

#capt {
	display: flex;
	justify-content: center;
	text-align: center;
	margin: 10px;
	padding: 10px;
}

#capt-ans {
    font-size: 50px
    color: rosybrown
}

#auth {
    display: flex;
    justify-content: center;
    text-align: center;
	margin: 10px;
	padding: 5px;
}

.answer {
    height: 97px;
	width: 106px;
	text-align: center;
	font-style: italic;
	font-size: 90px;
	font-weight: 1000;
	background: #088178;
	color: rosybrown;
	border: none;
	overflow: hidden;
}

.refresh {
    background: none;
    border: none;
	font-size: 50px;
	color: green;
	padding: 10px;
	padding-right: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}

#cont-btn {
    justify-content: center;
    text-align: center;
	margin: 10px;
	padding: 5px;
}

.button {
	height: 40px;
	width: 25%;
	background: #088178;
	border-radius: 20px;
	border: none;
	font-weight: 800;
	color: #fff;
}

.button:hover {
	background: #fff;
	color: #088178;
	border: none;
}

@media screen and (max-width: 500px) and (min-width: 310px) {
    #auth tr td img{
        width: 40px;
    }
    #auth tr td textarea{
        height: 90px;
        font-size: 70px;
    }
}

@media screen and (max-width: 300px) and (min-width: 200px) {
    #auth tr td img{
        width: 20px;
    }
    #auth tr td textarea{
        width: 90px;
        height: 70px;
        font-size: 50px;
    }
    #cont-btn input{
        font-size: 10px;
    }
}

