body {
    box-sizing: border-box;
    font-family: 'Poppins';
    background-color: azure;
    display: grid;
    place-items: center;
}

h1{
    margin-top: 1%;
    font-size: 220%;
    text-align: center;
}

h2{
    margin-top: 3%;
    font-size: 165%;
    text-align: center;
    margin-bottom: 1%;
}

.notas {
    display: flex;
    justify-content: space-between;
}

button {
    display: flex;
    justify-content: center;
    align-items: center;    
    height: 30px;
    width: 30px;
    line-height: 1;
    border: none;
    border-radius: 8px;
    color: #333;
    font-size:12px;
    margin-top: 3%;
    margin-bottom: 15%;
    transition: all ease .1s;
}

.active{
    transform: scale(1.25);
}

button:hover {
    transform: scale(1.25);
}

button:active{
    transform: scale(1.5);
    transition: all ease .1s;
}

.pergunta{
    font-size: 120%;
    text-align: center;
}
.smiles > div {
	border-radius:50%;
	min-width: 80px;
	min-height: 80px;
	cursor: pointer;
	text-align: center;
}

.text {
	font-size: small;
	font-weight: bold;
	padding-top: 10px;
}
.smiles > div > svg {
	margin-top: 12px;
}
.form-group {
	margin-top: 20px;
}
.smiles > div:nth-child(1) {
	background-color: rgba(0, 150, 51, 0.3);
}
.smiles > div:nth-child(2) {
	background-color: rgba(255, 235, 59, 0.3);
}
.smiles > div:nth-child(3) {
	background-color: rgba(237, 20, 61, 0.3);
}
.smiles > div:nth-child(1):hover {
	background-color: rgba(0, 150, 51, 1);
	color: white;
}
.smiles > div:nth-child(2):hover {
	background-color: rgba(255, 235, 59, 1);
	color: white;
}
.smiles > div:nth-child(3):hover {
	color: white;
	background-color: rgba(237, 20, 61, 1);
}
.smiles > div svg > path {
	transition: fill 250ms ease-in-out;
}
.smiles > div:hover svg > path {
	fill: white;
}
.smiles > div:nth-child(1).active {
	background-color: rgba(0, 150, 51, 1);
	color: white;
}
.smiles > div:nth-child(2).active {
	background-color: rgba(255, 235, 59, 1);
	color: white;
}
.smiles > div:nth-child(3).active {
	color: white;
	background-color: rgba(237, 20, 61, 1);
}
.smiles > div.active svg > path {
	fill: white;
}

.swal2-title{
    font-family: 'Poppins'!important;
}

.swal2-container.swal2-center>.swal2-popup{
    background: azure!important;
}