@import url("Raleway-Medium.ttf");

body {
    background-image: url("bg.jpg");
    background-color: #ffb303;
    background-repeat:no-repeat;
    background-size:cover;
    background-position: center;
    height: 100vh;
    text-align: center;
    font-size: 0.9rem;
    font-family: "Lato", Helvetica, sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin: 0px;
    padding: 0px;
}

.contentarea {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shadow-drop-2-bl {
	-webkit-animation: shadow-drop-2-bl 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: shadow-drop-2-bl 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

a {
        text-decoration: none; /* Remove the underline */
        text-decoration-color: transparent;
        color: inherit; /* Match the text color to the surrounding text */
        font-size: inherit; /* Match the font size */
        font-family: inherit; /* Match the font family */
        font-weight: inherit; /* Match the font weight */
        line-height: inherit; /* Match the line height */
        color: black;
        border-bottom: 0; /* Remove any border */
        display: inline-block;
}

/* Keyframes for animation */
 @-webkit-keyframes shadow-drop-2-bl {
    0% {
      -webkit-transform: translateZ(0) translateX(0) translateY(0);
              transform: translateZ(0) translateX(0) translateY(0);
      -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
              box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    100% {
      -webkit-transform: translateZ(50px) translateX(0px) translateY(0px);
              transform: translateZ(50px) translateX(0px) translateY(0px);
      -webkit-box-shadow: -12px 12px 20px -12px rgba(0, 0, 0, 0.5);
              box-shadow: -12px 12px 20px -12px rgba(0, 0, 0, 0.5);
    }
  }
  @keyframes shadow-drop-2-bl {
    0% {
      -webkit-transform: translateZ(0) translateX(-25px) translateY(15px);
              transform: translateZ(0) translateX(-25px) translateY(15px);
      -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
              box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    100% {
      -webkit-transform: translateZ(50px) translateX(0px) translateY(0px);
              transform: translateZ(50px) translateX(0px) translateY(0px);
      -webkit-box-shadow: -12px 16px 20px -12px rgba(0, 0, 0, 0.5);
              box-shadow: -12px 16px 20px -12px rgba(0, 0, 0, 0.5);
    }
  }