@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Cormorant+Garamond&family=Rubik+Doodle+Shadow&display=swap');
body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    background-color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
}


header {
    width: 95%;
    max-width: 788px;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    margin-top: 15px;
}
.avatar {
    width: 75vw;
    min-width: 300px;
    height: auto;
    border-radius: 20px;
}
.share-button {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgb(240, 240, 240);
}

.container {
    width: 91%;
    max-width: 680px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tile {
    width: 100%;
    height: 60px;
    /* background-color: rgb(37,37,37); */
    border-color: #ded01b;
    
    border-width: 7px;
    border-style: outset;
    margin: 17px;
    display: flex;
    justify-content: space-between;
    border-radius: 17px;
}

.name {
    font-family: 'Abril Fatface';
    margin: 0px;
    font-weight: 'bold';
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.5;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.subtitle {
    font-family: 'Abril Fatface';
    margin-top: 12px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 16;
    width: 100vw;
    letter-spacing: 6px;
}
/* color: 'transparent',
backgroundImage:
  'linear-gradient(to top, #462523 0, #cb9b51 22%, #f6f2c0 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #462523 100%)',
WebkitBackgroundClip: 'text',
MozBackgroundClip: 'text',
backgroundClip: 'text',
    fontWeight: 'bold', */

a {
    text-decoration: none;
    color: rgb(37,37,37);
    font-size: 18px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .name {
        font-size: 20px;
    }
    .subtitle {
        font-size: 0.8rem;
        letter-spacing: normal;
        margin-bottom: 10px;
    }
    
  }