@import url('https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap');

:root {
    --bgColor: #223344;
    --bgColor2: #090a0f;
    --accentColor: #FFF;
	--hoverColor: #FFAE51;
    --font: 'Nunito', sans-serif;
    --delay: .3s;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--font);
    background: url("seamless-header.jpg");
	background-size: 15%;
    background-repeat: repeat;
	
    opacity: 0;
    animation: 1s ease-out var(--delay) 1 transitionAnimation;
    animation-fill-mode: forwards;
    position: relative;
}

#header {
	width: 100%;
	text-align: center;
}

#profilePicture, #profilePicture img {
    position: relative;
    width: 96px;
    height: 96px;
    display: block;
    margin: 40px auto 20px;
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
}

#userName {
    color: var(--accentColor);
    font-size: 22px;
    font-weight: bold;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#links {
    display: block;
    margin: 60px auto;
	text-align: -webkit-center;
	width: 100%;
    max-width: 695px;
}

.link {
    position: relative;
    background-color: #FFA53D;
    color: var(--accentColor);
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    text-decoration: none;
    /* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
    -webkit-tap-highlight-color: transparent;
	width: 90%;
	height: 60px;
	display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 100px;
}

@media (hover: hover) {
    .link:hover {
        background-color: var(--hoverColor);
    }
}

.link:active {
    background-color: var(--accentColor);
    color: var(--bgColor);
}

.link-button {
	display: flex;
    justify-content: center;
    align-items: center;
}

.link-icon {
	height: 22px;
	width: auto;
	margin-right: 8px;
}

#website-button {
	animation: shake 3.5s;
	animation-iteration-count: infinite;
}

.button-new-badge {
	width: 36px;
	height: 36px;
	position: absolute;
	top: -18px;
	left: 30px;
	
	-webkit-filter: drop-shadow(1px 1px 1px grey);
    filter: drop-shadow(1px 1px 1px grey);
}

/*-------------------------animations-----------------------*/
@keyframes transitionAnimation {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
	0% { transform: scale(1); }
	5% { transform: scale(1.02); }
	10% { transform: scale(1); }
	15% { transform: scale(1.02); }
	20% { transform: scale(1); }
	25% { transform: scale(1.02); }
	30% { transform: scale(1); }
	35% { transform: scale(1.02); }
	40% { transform: scale(1); }
}