@import url('https://fonts.googleapis.com/css2?family=Joan&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
:root {
    --primary-color: #212338;
    --secondary-color: #19225e;
    --accent-color: #613b2d;
    --dark-color: #081f49;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #49854b;
    --warning-color: #aa7f3e;
    --error-color: #4d0f0b;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --font-family: 'Poppins', sans-serif;
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --border-radius: 8px;
    --transition: all 0.3s ease;
}
 * {
     
     padding: 0rem;
     margin: 0rem;
}
button {
      padding: 0;
      margin: 0;
      line-height: 0;
}
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
       scroll-behavior: smooth;
   
}
h1,h2,h3,h4,h5,p {
       padding: 0;
       margin: 0;
}
body {
  
       padding: 0rem;
       margin: 0rem;
       font-family: var(--font-family);
}
a {
      text-decoration: none;
}

.bg {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--primary-color);
    /* background-size: 100% 300%; */
    width: 100%;
    height: 100vh;
    width: 100%;
}



.dev_img {
    width: 100%;
    height: 18rem;
}
.dev_img .img_img {
    width: 100%;
    height: 100%;
    padding: 0rem;
    margin: 0rem;
    object-fit: cover;
}
.txt {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--warning-color);   
}

.txt p {
    color: var(--warning-color);
    font-size: 2rem;
    font-weight: 500;

}
/* .bg{
    border: 1px solid red;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* .bg > img{
    padding-top: 30px;
}

.txt{
    color: var(--warning-color);
    font-size: 20px;
    text-align: center;
}

.txt > p{
    padding-bottom: 20px;
    font-size: 40px;

}

.txt > h1 > button{
    font-size: 30px;
    cursor: pointer;
    background-color: var(--error-color);
    color: var(--warning-color);
} */