*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

@font-face {
  /* font-family: 'Dosis Extralight';
  src:url(fonts/Dosis/static/Dosis-ExtraLight.ttf) */

  font-family: 'Dosis regular';
  src:url(fonts/Dosis/static/Dosis-Light.ttf)
}


html,
body {
  padding: 0;
  margin: 0;
  background-color: #eee;
  color: #fff;
  /* font-family: sans-serif; */
  font-family: 'Dosis Extralight', sans-serif;

   overflow-x: hidden;
}



/*main content*/

.main-container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    border-bottom: 1px solid #ddd; /* Just for visualization */
    padding: 40px;
    box-sizing: border-box;
}

.left-section {
    width: 40%;
    background-color: transparent; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-section img {
    max-width: 100%;
    max-height: 200px;
    height: auto;
    display: block;
}

.right-section {
    width: 70%;
    padding-left: 20px;
    box-sizing: border-box;
}

.right-section h2 {
    margin-top: 0;
    color: #333;
}

.right-section p {
    color: #666;
    line-height: 1.5;
}

.right-section button {
    color: rgb(32, 39, 55);;
    border: 1px solid rgb(32, 39, 55);
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 4px;
    background-color: transparent; /* Default background */
    transition: background-color 0.3s ease;
}

.right-section button:hover{
    color: white;
    background-color: rgb(32, 39, 55);
}


  @media (max-width: 768px) {

    .main-container {
        flex-direction: column;
        width: 95%;
        padding: 10px;

    }
    
    .left-section, .right-section {
        width: 100%;
    }
    
    .right-section {
        padding-left: 0;
        padding-top: 20px;
    }
}


