body{
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center; /* NEW */
    flex-flow: column ;
}

.layout{
    display: flex;
    align-items: center; /* NEW */
    flex-flow: column ;
    max-width: 800px;
    width: 100%;
    /* background-color: coral; */
    padding: 40px;
}


.content{
    display: flex;
    flex-flow: column ;
    align-items: center; /* NEW */
    justify-content: center;
    max-width: 600px;
    width: 100%;
    /* background-color: bisque; */
}

.hidden{
    display: none;
}

.card{
    background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),  url('./background.png');

    border-radius: 6%;
    width: 400px;
    height: 400px;
    padding-top: 80px;
    font-size: 18px;
    font-weight: 100;
}

.incard{
    
}

.warning{
    font-size: 12px;
    color: grey;
    margin: 2%;
}

.title{
    font-weight: 600;
    text-align: center;
    font-size: 50px;
    color: black;
}


.autor{
    align-items:baseline;
    align-content:space-between;
    padding-top: 7%;
    font-size: 12px;
}

.name{
    font-weight: 900;
}

.date{
    font-weight: 300;
    margin-left: 52%;
}

.entry{
    text-align: center;
    font-size: 20px;
    padding: 40px;

}


.btn-div{
    align-self: center;
    display: flex;
}

.btn{
    width: 250px;
    height: 40px;
    left: 123px;
    top: 1105px;
    font-weight: 900;
    color: white;
    font-size: 14px;
    border: none;
    background-color: #4c0099;
}

.logo-only{
    height: 40px;
    width: 300px;
    margin: 2%;
}

.card-title{
    font-weight: 700;
    font-size: 24px;
}

.card-img{
    width: 200px;
}

.card-logo{
    align-self: center;
    display: flex;
}

.footer-logo{
    height: 60px;
    width: 60px; 
}

.big{
    text-align: center;
    width: 400px;
}

@media only screen and (min-width: 451px) {
    body {
      /* background-color: lightblue; */
    }

    .card{

        width: 400px;
        height: 408px;
        padding: 25px 75px 71px 25px;
        margin-top: 25px;
    }

    .card-content{
        padding: 40px 0px 0px 40px;
        
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-self: center;
    }

    .btn{
        cursor: pointer;
    }
  }

  @media only screen and (max-width: 450px) {
    .autor{
        font-size: 9px;
    }

    .big{
        width: 300px;
    }

    .warning{
        font-size: 8px;
       
    }
    
    .title{
        font-weight: 600;
        font-size: 40px;
    }

    .card{
        background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),  url('./background_s.png');
        
        width: 295px;
        height: 325px;
        font-size: 14px;
        font-weight: 100;

        padding: 0px 75px 71px 25px;
        margin-top: 25px;
    }

    .card-content{
        padding: 60px 0px 0px 40px;
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-self: center;
    }

    .btn{
        width: 150px;
        height: 30px;
        left: 20px;
        top: 20px;
        font-weight: 800;
        color: white;
        font-size: 9px;
        border: none;
        background-color: #4c0099;
    }

    .card-img{
        max-width: 200px;
    }
   
    .card-title{
        font-weight: 600;
        font-size: 20px;
    }

    body {
        margin: 0%;
        padding: 0px 0px 0px 1%;
        font-size: smaller;
    }

    .logo-only{
        height: 80px;
        width: 425px;
        margin: 0px;
        margin-bottom: 2%;
        /* padding-right: 15px;   */
      }

    .layout{
        margin: 0px;
        padding: 0px;
    }

  }