@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

html {
    min-height: 100vh;
    background-image: url(/resources/images/film-002.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
    overflow-y: hidden;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: "Source Code Pro", monospace;
    font-optical-sizing: auto;
    font-style: normal;
}

.title {
    width: 50%;
    margin: auto;
    text-align: center;
    transform: translateY(40vh);
}

.title h1 {
    font-size: 35px;
    font-weight:400;
    color: white;
}

.item {
    list-style: none;
    width: 100vw;
    position: absolute;
    opacity: 0;
    animation: fadeIn 3s, slideUp 1s;
    animation-fill-mode: forwards;
}

.mail {
    position:absolute;
    bottom:0;
    right:0;
    padding: 20px;
}

a {
    font-size: 25px;
    font-weight: 400;
    padding: 3px 10px;
    color: white;
    text-decoration: none;
    text-shadow: 1px 1px 2px #313131a5;
}

a:hover {
    background-color: yellow;
    color: black;
    text-shadow: 0px 0px 0px;
}

@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}