@font-face {
    font-family: "Myriad Pro Cond";
    src: url("MyriadPro-Cond.otf");
}
@font-face {
    font-family: "Myriad Pro";
    src: url("MyriadPro-Regular.otf");
}
html, body {
    margin: 0;
    padding: 0;
}
body {
    background-color: black;
    background-image: url("bg.jpg");
    color: white;
    font-family: "Myriad Pro";, Arial, Sans-Serif;
    font-size: 16px;
    background-attachment: fixed;
    max-width: 100%;
    text-align: center;
}
.container {
    margin: 0 auto;
    padding: 20px;
}
img {
    height: 50px;
    border: 1px solid black;
    border-radius: 15px;
}
#logo {
    height: 200px;
    border: none;
    border-radius: 0;
}
ul {
    list-style: none;
    padding: 0;
}
li {
    padding: 1em;
}
a {
	color: #f4dbb5;
}
@-webkit-keyframes pop {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
@keyframes pop {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
.pop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
a.button:hover img, a.button:focus img, a.button:active img {
    -webkit-animation-name: pop;
    animation-name: pop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
