@font-face {
    font-family: 'bahiana';
    src: url('../fonts/Bahiana.ttf') format('truetype');
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    display: flex;
    background: black;
}

main {
    display:flex;
    flex-direction: column;
    margin:auto;
    overflow:hidden;
}

img {
    margin:auto;
    filter: invert();
    width:80%;
    max-width:400px;
    animation: dropDown 1s forwards;
    margin-bottom:20px;
    cursor: pointer;
}

.button {
    width:80%;
    max-width:400px;
    margin:20px auto 0 auto;
    color:white;
    font-size:60px;
    text-align: center;
    font-family: bahiana;
    cursor: pointer;
}

.button:nth-child(even) {
    animation: dropLeft 1s forwards;
}

.button:nth-child(odd) {
    animation: dropRight 1s forwards;
}

.button::before,
.button::after {
  content: "";
  opacity: 0;
  transition: opacity 0.2s ease;
}

.button:hover::before {
  content: ">";
  margin-right: 0.2em;
  opacity: 1;

}

.button:hover::after {
  content: "<";
  margin-left: 0.2em;
  opacity: 1;
}

a {
    color:white;
    text-decoration: none;
}

i {
    color:#ddf;
}

@keyframes dropDown {
    0%   { transform: translateY(-1000px); }
    50%     {transform: translateY(20px);}
    100% { transform: translateY(0); }
}

@keyframes dropLeft {
    0%   { transform: translateX(-1000px); }
    50%     {transform: translateX(20px);}
    100% { transform: translateX(0); }
}

@keyframes dropRight {
    0%   { transform: translateX(1000px); }
    50%     {transform: translateX(-20px);}
    100% { transform: translateX(0); }
}