* {
    box-sizing: border-box;
  }
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}
/* use background image selector on the body */
body{
    background-color: white;
    background-image: url("./background.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    display: flex;
    flex-direction: column;
  /* Center and scale the image nicely */

}

h1{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 59px;
    font-style: normal;

}
#SD-text{
    margin-bottom: 0px;
    color: #292525;
}
.navbar {
    padding: 12px;
}
.red-text{
    margin-top: 0px;
    background: -webkit-linear-gradient(180deg, #FF0000 0%, #D60A0A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}


.caption{
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    text-align: justify;
    margin-top: 30px;
}
.main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 122px - 122px);
}
.desc-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 130px;
    max-width: 833px;
}
.illustration-wrap {
    margin-right: 86px;
}

.contact-us{
    margin-top: 50px;
    border-radius: 18px;
    height: 60.47px;
    line-height: 60.47px;
    text-decoration: none;
    width: 182px;
    color:white;
    background-color: #E91C25;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.005em;
    border-width: 0px;
    background: linear-gradient(180deg, #E91C25 0%, #C81E2B 100%);
    box-shadow: 0px 46px 52px rgba(225, 96, 96, 0.35);
    cursor: pointer;
}