:root {
    --bg: rgb(0,8,20); /* Background */
    --text: rgb(255,195,0); /* Yellow */
    --bgshare: rgb(0,29,61); /* Share Button Background */
    --icon: rgb(255,214,10); /* Icon Color */
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(bg-body.webp);
    color: #fff;
    font-family: "EB Garamond", serif;
    background-size: cover;
    background-position: center bottom;
    height: 100vh;
}

a {
    text-decoration: none;
}

/* Container */

.container {
    width: 90%;
    max-width: 668px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

/* Logo */

.logocontainer {
    margin-top: 50px;
}

.logo img {
    max-width: 300px;
    width: 50vw;
}

.caption {
    margin-top: 50px;
}

.caption img {
    max-width: 330px;
    width: 100%;
}

.tile {
    width: 100%;
    background-color: #b48d3f;
    margin: 7px;
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    max-width: 200px;
}

.tile:hover {
    transition: cubic-bezier(.07, 1.41, .82, 1.41) 0.2s;
    transform: scale(1.05);
    animation: pulse 1s linear infinite;
}

.tile p {
    margin: 9px 0px;
}

@keyframes pulse {
	0% {
		/*transform: scale(0.95);*/
		box-shadow: 0 0 0 0 rgba(180, 141, 63, 0.7);
	}

	70% {
		/*transform: scale(1);*/
		box-shadow: 0 0 0 10px rgba(180, 141, 63, 0);
	}

	100% {
		/*transform: scale(0.95);*/
		box-shadow: 0 0 0 0 rgba(180, 141, 63, 0);
	}
}

.share {
    margin: 8px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: var(--bgshare);
    color: #fff;
    visibility: hidden;
}

.share svg {
    margin-left: 12px;
    margin-top: 10px;
}

.icon {
    margin: 8px 8px;
    width: 25px;
    height: 25px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    font-size: 25px;
    filter: invert(1);
}

.icon img {
    filter: invert(1);
}

/* Footer */

.credit {
    padding-top: 30px;
    bottom: 0;
    /*position: absolute;*/
}

.credit a {
    color: #000;
    text-decoration: none;
  }

.credit:hover {
    color: #0ef;
}

img {
    max-width: 100%;
}

.text-center {
    text-align: center;
}

.mb-50 {
    margin-bottom: 50px;
}
