@import url('https://fonts.googleapis.com/css?family=Muli:300,600&display=swap');

* {
	box-sizing: border-box;
}

body {
	background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
	background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
	background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
	display: flex;
	flex-direction: column;
	font-family: 'Muli', sans-serif;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	margin: 0;
        height: 100vh;
	margin: 0;
        line-height: 48px;
	display: grid;
	place-items: center;
	background-image: linear-gradient( #111, #660000 );
}

a {
	color: #3498db;
}

a:hover {
	text-decoration: underline;
}

h1 {
	margin-bottom: 20px;
	text-align: center;
}

small {
	margin-top: 10px;
}

table {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	border-spacing: 0;
}

table tr th {
	background-color: #F1F5F8;
	border-bottom: 2px solid #ccc;
	font-size: 12px;
	padding: 10px;
	text-transform: uppercase;
	text-align: left;
}

table tr {
	border-bottom: 1px solid #ccc;
}

table tr td {
	background-color: #fff;
	border: 0;
	border-bottom: 1px solid #ccc;
	padding: 10px;
}

table tr:nth-of-type(odd) td {
	background-color: #f9f9f9;
}

table tr:last-of-type td {
	border-bottom: 0;
}

table tr td img {
	border-radius: 50%;
	object-fit: cover;
	height: 35px;
	width: 35px;
}

table tr td:nth-of-type(2), table tr td:nth-of-type(3) {
	font-weight: bold;
}

table tr td:nth-of-type(3), table tr td:nth-of-type(4) {
	text-align: center;
}

@media screen and (max-width: 768px) {
	table tr *:nth-of-type(4), table tr *:nth-of-type(5) {
		display: none;
	}
}

@media screen and (max-width: 550px) {
	body {
		margin-bottom: 50px;
		justify-content: flex-start;
	}
	
	table tr *:nth-of-type(6) {
		display: none;
	}
}

/* SOCIAL PANEL CSS */
.social-panel-container {
	position: fixed;
	right: 0;
	bottom: 80px;
	transform: translateX(100%);
	transition: transform 0.4s ease-in-out;
}

.social-panel-container.visible {
	transform: translateX(-10px);
}

.social-panel {	
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 16px 31px -17px rgba(0,31,97,0.6);
	border: 5px solid #001F61;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: 'Muli';
	position: relative;
	height: 169px;	
	width: 370px;
	max-width: calc(100% - 10px);
}

.social-panel button.close-btn {
	border: 0;
	color: #97A5CE;
	cursor: pointer;
	font-size: 20px;
	position: absolute;
	top: 5px;
	right: 5px;
}

.social-panel button.close-btn:focus {
	outline: none;
}

.social-panel p {
	background-color: #001F61;
	border-radius: 0 0 10px 10px;
	color: #fff;
	font-size: 14px;
	line-height: 18px;
	padding: 2px 17px 6px;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 0;
	transform: translateX(-50%);
	text-align: center;
	width: 235px;
}

.social-panel p i {
	margin: 0 5px;
}

.social-panel p a {
	color: #FF7500;
	text-decoration: none;
}

.social-panel h4 {
	margin: 20px 0;
	color: #97A5CE;	
	font-family: 'Muli';	
	font-size: 14px;	
	line-height: 18px;
	text-transform: uppercase;
}

.social-panel ul {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.social-panel ul li {
	margin: 0 10px;
}

.social-panel ul li a {
	border: 1px solid #DCE1F2;
	border-radius: 50%;
	color: #001F61;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	text-decoration: none;
}

.social-panel ul li a:hover {
	border-color: #FF6A00;
	box-shadow: 0 9px 12px -9px #FF6A00;
}

.floating-btn {
	border-radius: 26.5px;
	background-color: #001F61;
	border: 1px solid #001F61;
	box-shadow: 0 16px 22px -17px #03153B;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	line-height: 20px;
	padding: 12px 20px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
}

.floating-btn:hover {
	background-color: #ffffff;
	color: #001F61;
}

.floating-btn:focus {
	outline: none;
}

.floating-text {
	background-color: #001F61;
	border-radius: 10px 10px 0 0;
	color: #fff;
	font-family: 'Muli';
	padding: 7px 15px;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 998;
}

.floating-text a {
	color: #FF7500;
	text-decoration: none;
}

@media screen and (max-width: 480px) {

	.social-panel-container.visible {
		transform: translateX(0px);
	}
	
	.floating-btn {
		right: 10px;
	}
}

:root {
	--color-primary: gold;
	--color-second: orangered;
}

p {
	font-size: 5rem;
	margin: auto;
	font-family: system-ui;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--color-primary);
	-webkit-text-stroke: 2px var(--color-second);
	text-stroke: 2px var(--color-second);
	text-shadow: 1px 1px 5px var(--color-second);
	position: relative;
	line-height: 100%;
}

.bubble {
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-image: radial-gradient(var(--color-primary) 20%, var(--color-second));
	box-sizing: border-box;
	position: absolute;
	index: -1;
	bottom: 25px;
	opacity: 0;
	mix-blend-mode: overlay;
	animation: floatUp 1s ease-in infinite;
}
@keyframes floatUp {
	25% { 
		opacity: 1; 
		transform: scale(1);
		filter: blur(5px)
	}
	100% {
		bottom: 10rem; 
		opacity: 0;
		transform: scale(0);
		filter: blur(10px)
	}
}


#p2000000 {
    background: #660000; }

#p1900000 {
    background: #990000; }

#p1800000 {
    background: #BD0000; }

#p1700000 {
    background: #FF0000; }

#p1600000 {
    background: #ff3131; }

#p1500000 {
    background: #FE4033; }

#p1400000 {
    background: #FF5448; }

#p1300000{
    background: #FF6148; }

#p1200000{
    background: #ff4a01; }

#p1100000{
    background: #FF5814; }

#p1000000{
    background: #ff6501; }

#p900000{
    background: #FB761F; }

#p800000{
    background: #FF8433; }

#p700000{
    background: #FF8F45; }

#p600000{
    background: #FF9C5A; }

#p500000{
    background: #ffae01; }

#p400000{
    background: #ffc501; }

#p350000{
    background: #EEDC5B; }

#p250000{
    background: #FFED6D; }

#p150000{
    background: #FFFF00; }

#p100000{
    background: #E0FF03; }

#p80000{
    background: #CBFF27; }

#p60000{
    background: #B0FF27; }

#p50000{
    background: #8DFF27; }

#p40000{
    background: #24ed00; }

#p30000{
    background: #0DDC21; }

#p15000{
    background: #00CB14; }

#p0{
    background: #00BC13; }

@media screen and (max-width: 768px) {
    body {
        background: url('sfondi/scoville2-small.jpg');
    }
    
    h1 {
        animation: none;
    }
    
      table, tr, td {
        display: block;
        width: 100%;
    }
}