.container {
    width: 70rem;
    height: 82rem;
    border: 3px grey;
    border-radius: 10px;
    display: grid;
    grid-template-areas:
        "header header header"
        "bio main nav"
        "bio second nav"
        "ad stamp statuscafe"
        "chat calendar pet"
        "chat button ad2"
        "footer footer footer";
    grid-template-columns: 1fr 1.9fr 0fr;
    grid-template-rows: 1.4fr 0.7fr 1.6fr 0.5fr 1fr 0.3fr 0fr;
    gap: 10px;
    padding: 10px;
    margin-top: 6px;
}