
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family:"Inter", sans-serif; 
    font-weight: 400;
}

.container-desktop {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 70% 30%;
    background: url("background.png") center  no-repeat;
    background-size: cover;
    color: white;
    padding: 40px;
}

.container-mobil {

    width: 100vw;
    height: 100vh;
    background: url("background-mobile.png") center  no-repeat;
    background-size: cover;
    color: white;
    padding: 40px;
     display: none;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}
.container-mobil h1 {
    margin-top:90px;
    font-weight: 400;
    font-size: 40px;
}

.left {
    display: flex;
    align-items: center;
    justify-content:center; 
    padding-left: 150px;
}

.left h1 {
    font-size: 45px;
    font-weight: 400;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.logo {
    width: auto;
    margin-bottom: 50px;
}

.email {
    color: white;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    padding-bottom: 2px;
    text-decoration: none;
}

.email:hover {
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .left{
         padding-left: 100px;
    }

}

/* Responsive */
@media (max-width: 768px) {
    .container-desktop {
        display: none;
    }
    .container-mobil {
        display: flex;
    }
}

@media (max-width:500px){

    .container-mobil h1 {
             margin-top:60px;
                 font-size: 35px;
}

}

@media (max-width:430px){

    .container-mobil h1 {
             margin-top:40px;
                 font-size: 30px;
}

}