.container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;
    background-image: url("../img/bg.webp");
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: center;
    align-items: center;
    padding: 80px 0;
    background-position: top center;
}

.container h1{
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    letter-spacing: .02em;
    line-height: 1.3em;
    text-transform: none;
    margin: 15px;
    font-family: 'Playfair Display', serif;
}

.container a {
    border-width: 2px;
    border-style: solid;
    background-color: transparent;
    transition: 0.1s background-color linear, 0.1s color linear;
    border-color: #fff;
    color: #fff;
    padding: 25px 46px;
    font-family: 'Mukta', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 16px;
    text-indent: 16px;
    display: inline-block;
    width: fit-content;
    height: auto;
    margin: 15px;
}

.container a:hover {
    background: rgba(255, 255, 255, 1);
    color:rgb(0, 0, 0);
  }