
@font-face {
    font-family: 'SofiaProLight';
    src: url('../fonts/Sofia-Pro-Light.otf') format('opentype');
    font-style: normal;
    font-weight: normal;
}

body {
    margin: 0;
    font-family: 'SofiaProLight', sans-serif;
    background-color: #EEECD9;
    /* background-color: #D8D3B8; */
  }

.container {
    display: flex;
    height: calc(100vh - 190px);
}

.left-block {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.header {
    height: 50px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 25px;
}

.logo {
    cursor: pointer;
    width: 200px;
}

.logo-label {
    font-size: 14px;
    font-weight: normal;
    color: #fff; /* adjust color as needed */
}

.list-button{
    text-decoration: none;
    /* background-color: #3e3707; */
    background-color: #807529;
    padding: 5px 40px;
    border-radius: 30px;
    margin-bottom: 20px;
    width: 700px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    font-size: 20px;
    color:#EEECD9;
}

@media (max-width: 800px) {
    .list-button {
      width: 60%
    }
}


.list-button:hover {
    background-color: #80742986;
}

.right-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #3e3707;
    color: #fff;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}


.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    filter: invert(39%) sepia(95%) saturate(329%) hue-rotate(15deg) brightness(92%) contrast(83%);
}

.address {
    margin-top: 20px;
    text-align: center;
}

.address a {
    color: #807529;
    text-decoration: underline;
}

.address a:hover {
    color: #3e2534;
    /* color: darkblue; */
}
