.top-text p {
    margin-top: 10px;
    display: flex;
    justify-content: left;
    align-items: left;
    text-align: left;
    color: #392f5a;
    font-size: 100px;
    font-family: "Czizh Wing", sans-serif;
    font-weight: bold;
    padding: 30px;
  }

  .container {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.left-card {
    display: flex;
    flex-direction: column;
    justify-content: top;
    width: 600px;
    height: 500px;
    margin: 20px;
    border: solid 3px #392f5a;
    border-radius: 10px;
}

.right-card {
    display: flex;
    flex-direction: column;
    justify-content: top;
    width: 600px;
    height: 500px;
    margin: 20px;
    border: solid 3px #392f5a;
    border-radius: 10px;
    margin-left: auto;
}


.name {
    margin-top: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.info {
    text-align: center;
    font-size: 24px;
    font-family: "Inter", sans-serif;
}

img:not(#logo){      /* Добавлено :not(#logo)  из-за бага с логотипом в шапке*/
    align-self: center;
    justify-self: top;
    display: flex;
}

button {
    height: 50px;
    width: 100%;
    border-bottom: 3px solid #392f5a; 
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 10px ;
    background-color: #fefadc;
    font-size: 27px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    transition: ease-in-out 0.5s;
    cursor: pointer;
    color: #392f5a;
  }

  .right-button {
    background-color: #392f5a;
    color: #fefadc;
    border-top: none ;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    cursor: pointer;
  }

  button:hover {
    font-size: 30px;
    color:rgb(220, 125, 91);
  }