html {
	width: 100%;
	height: 100%;
	background: linear-gradient(to top right, rgb(220, 20, 52), rgb(240, 152, 0));
	padding: var(--gap);
	box-sizing: border-box;
	display: flex;
	overflow-x: hidden;
	font-size: var(--size);
    color: var(--color);
    --gap: 52px;
    --size: 24px;
    --color: rgb(12, 12, 12);
    --colorReverse: rgb(180, 180, 180)
}
body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content {
}
footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 112px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--gap);
    box-sizing: border-box;
    color: var(--colorReverse);
}
.footerLink {
    color: var(--colorReverse);
    text-decoration: none;
    transition: .2s;
}
.footerLink:hover {
    opacity: 0.6;
    transition: .2s;
}
.footerLink img {
    height: 92px;
    width: auto;
    opacity: 0.5;
}