* {
    margin: 0px;
    padding: 0px;
}
html, body, .container {
    width: 100%;
    height: 100%;
}

.background-image {
    background-image: url("img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
}

svg {
  width: 80%;
  height: auto;
  transform: scale(2); /* Adjust the scale factor as needed */
}

@font-face {
  font-family: 'Author-Regular';
  src: url('../fonts/Author-Regular.woff2') format('woff2'),
       url('../fonts/Author-Regular.woff') format('woff'),
       url('../fonts/Author-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

body {
    font-family: 'Author-Regular', sans-serif;
    background-color: #000000;
}

.title {
    display: flex;
    align-items: center;
    position: absolute;
  	top: 20%;
  	left: 50%;
  	transform: translate(-50%, -50%);
}

.content {
    display: flex;
    align-items: center;
    color: white;
    position: absolute;
  	top: 80%;
  	left: 50%;
  	transform: translate(-50%, -50%);
  	justify-content: center;
}