@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('fonts/montserrat-v15-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/montserrat-v15-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }

  @font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: local(''),
         url('fonts/montserrat-v15-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/montserrat-v15-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }

  @font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: local(''),
         url('fonts/montserrat-v15-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/montserrat-v15-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  @font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: local(''),
         url('fonts/montserrat-v15-latin-800.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/montserrat-v15-latin-800.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  

body{
    margin:0;
    padding:0;
    font-family: 'Montserrat';
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 1.6em;
    color: #696969;
}
h2 {
    font-size: 20px;
    font-weight: 800;
    color: #932A80;
}
a {
    text-decoration: none;
    color: #932A80;
}
a:hover{
    text-decoration: underline;
}
img{
    max-width:100%;
}
.container{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}
.logo img {
    display: table;
    margin: 0 auto;
}
.logo {
    padding-top: 40px;
    padding-bottom: 40px;
}
.container-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
}
.link-container{
    position: relative;
}
.link-logo {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(4px 0px 24px rgba(0, 0, 0, 0.8));
}
.txt-container {
    background: #eee;
    padding: 80px 60px 60px;
    margin-left: 40px;
    margin-right: 40px;
    position: relative;
}
.txt-container::before {
    content: '';
    background: #eee;
    width: 100%;
    height: 200px;
    position: absolute;
    top: -200px;
    left: 0;
    z-index: -1;
}
.footer {
    background: #932A80;
    color: #fff;
    font-size: 14px;
    padding: 20px;
    text-align: center;
}
.footer p {
    margin: 0;
}
.coming-soon {
    text-align: center;
    background: #932A80;
}
.coming-soon h2 {
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 17px;
}

@media (max-width: 700px){
    .container-2 {
        grid-column-gap: 20px;
    }
}
@media (max-width: 580px){
    .container-2 {
        grid-template-columns: 100%;
        background: #eee;
    }
    .txt-container {
        padding: 40px;
        margin-left: 0;
        margin-right: 0;
    }
    .txt-container::before {
        content:none;
    }
}