@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none!important;
    transition: all 0.3s;
}

ul{
    list-style: none;
}

body{
    font-family: 'Inter', sans-serif;
}

/* .landing-page{
    display: flex;
}


.interscape-1{
    width: 100%;
    height: 100vh;
}

.landing-page .interscape{
    width: 100%;
    height: 100vh;
    background: #1e1811 url(../images/building_bg.png) no-repeat;
    background-position: left bottom;
    background-size: 100% auto;
}

.landing-page .interscape-1{
   background: url(../images/dominika-roseclay.jpg) no-repeat; 
   background-size: cover;
}

.landing-page .interscape .content-1{
    width: 250px;
    margin: 60px 40px 0 auto;
}

.landing-page .interscape-1 .content-1{
    margin: 60px auto 0 40px;
}

.landing-page .interscape .content-1 img{
    width: 200px;
    margin-bottom: 10px;
}

.landing-page .interscape .content-1 p{
    color: #fff;
}

.landing-page .interscape-1 .content-1 p{
    color: #000;
}

@media(max-width:600px){
    .landing-page{
        flex-direction: column;
    }
    .landing-page .interscape{
        height: 50vh;
    }
    .landing-page .interscape .content-1{
        margin: 30px auto 0 40px;
    }
    .landing-page .interscape .content-1 img{
        width: 120px;
    }
    .landing-page .interscape .content-1 p{
        font-size: 14px;
    }
} */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background-color: #2d1810;
}

.interscape {
    width: 100%;
    /* max-width: 600px; */
    padding: 50px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    height: 50vh;
    position: relative;
}

.interscape-1 {
    background-image: url('../images/interscpe_1.jpeg');
    /* border-bottom: 3px solid #fff; */
}

.interscape:nth-child(2) {
    background-image: url('../images/studio_interscpe.jpeg ');
}

.logo {
    position: absolute;
    top: 40px;
    left: 40px;
    max-width: 250px;
}

.content-1 {
    /* background: rgba(0, 0, 0, 0.5); */
    padding: 20px;
    border-radius: 10px;
}

.content-1 p {
    font-size: 18px;
}

@media (min-width: 768px) {

   

    .landing-page {
        flex-direction: row;
        height: 100vh;
    }

    .interscape {
        height: 100vh;
        width: 50%;
        border-right: 3px solid #fff;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 120px !important;
        top: 15px !important;
        left: 20px !important;
    }
     .interscape-1 {
        border-bottom: 3px solid #fff !important;
    }
}