body{
    background-image: url('./unsplash.jpg');
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .App {
    text-align: center;
    height: 100vh;
  }
  .content{
    display: flex;
    flex-direction: column;
  }
  .imgCont{
    width: 100%;
    max-width: 700px;
    margin: auto;
    padding-top: 50px;
  }
  .image{
    width: 100%;
  }
  .link{
    display: block;
    width: 150px;
    height: 40px;
    margin: auto;
    border: 3px solid white;
    margin-bottom: 30px;
    margin-top: 30px;
    align-content: center;
    color: white;
    cursor: pointer;
    transition: 0.4s;
  }
  .link:hover{
    color: #141a1a;
    background-color: white;
  }
  .footer{
    margin-top: 30px;
  }
  .footer a{
    color: white;
  }
  