main {
    background-color: rgb(87, 112, 158);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
    color: #444
}




.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 30px;

}



.card {
    background-color: rgb(239, 242, 244);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    position: relative;
    padding-top: 85px;
    margin-top: 40px;
      user-select: none;
  -webkit-user-select: none;

}


.img-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    top: -60px;
    background-color: rgb(239, 242, 244);
    padding: 5px;
}

h1 {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin: 20px 0 0px 0;
    color: #222;

}

h3 {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    margin: 0 0 10px 0;
    color: #333;

}

h5{
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    
    color: #777;
}

a {
    text-decoration: none;
    color: #222;
}

.cardbutton {
    background: #d2cdcd;
    padding: 15px;
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 7px;
    background-color: rgba(87, 112, 158, 0.21);
    transition: transform 0.1s ease;

}


.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    width: 80%;

}

.tag {
    padding: 6px 12px;
    background-color: rgba(87, 112, 158, 0.105);
    border-radius: 12px;
    font-size: 14px;
    display: inline-block;

}

.buttons{
    padding: 10px 0px;
    gap: 10px;
    display: flex;
}

.buttons button{
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.224);
    color: rgb(235, 232, 232);
    transition: transform 0.1s ease;
}

.buttons i{
    margin-right: 5px;
}

.info-card{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.info-card i{
    margin-right: 5px;

}

.cardbutton:active, button:active{
    transform: scale(0.95);
}