body {
    margin: 0;
    padding: 0;
    font-family: 'Martel', serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background-image: url('https://augment.legal/images/augment-landing.jpg');
    background-size: cover;
    background-position: center center;
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 42%;
    bottom: 0;
    width: 42%;
    background: rgba(255, 255, 255, 0.15);
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
    /* responsivness changes */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    padding: 15px; /* Add padding to ensure content doesn't touch the edges */
    padding-bottom: 30px;
    box-sizing: border-box; /* Include padding in width calculation */
}

.main-text {
    font-size: xxx-large;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 22px; /* Added padding-left value */
    padding-right: 22px; /* Added padding-right value */
    color: #085070;
    background: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 10;
}

.main-text-constrained {
    font-size: x-large;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 12px; /* Added padding-left value */
    padding-right: 12px; /* Added padding-right value */
    color: #085070;
    background: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 10;
}

.tagline {
    margin-top: 20%;
    margin-bottom: 38%;
    font-size: x-large;
}

.about-text {
    padding: 3%;
    margin-top: 20%;
    margin-bottom: 38%;
    font-size: large;
    text-align: left;
    color: rgb(2, 43, 80);
}

.about-text-header {
    font-size: larger;
    font-weight: bolder;
    text-align: left;
    color: rgb(3, 79, 146);
    padding-top: 5%;
}

.form-directions {
    margin-bottom: 5%;
    align-self: flex-end;
    font-size: larger;
    color: rgb(2, 43, 80);
}

.video-disclaimer {
    margin-bottom: 5%;
    align-self: flex-end;
    font-size: x-small;
    color: rgb(2, 43, 80);
}

.contact-info {
    font-size: 18px;
    color: rgb(2, 43, 80);
    margin-top: 6px;
    text-align: left;
}

footer {
    background-color: rgb(165, 33, 33);
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

.footer-links a {
    font-size: 20px;
    color: rgb(230, 239, 247);
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 100; /* Adjust the font weight value as desired */
}

.footer-info,
.footer-address {
    font-size: 12px;
    font-weight: normal;
    color: rgb(230, 239, 247);
    margin-top: 10px;
}

.footer-link-separator {
    font-size: 20px;
    color: rgb(230, 239, 247);
    margin: 15px; /* Adjust the spacing as desired */
}

.panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background-color: #fff;
    opacity: 0.25;
    z-index: 1;
}

.logo {
    position: relative;
}

.icon {
    position:relative;
    z-index: 0;
    top: 46%;
    left: 1%;
    height: 300px;
    width: auto;
    background-image: url('https://augment.legal/images/augment-legal-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 0px; /* Adjust the margin value as desired */
}

.icon-constrained {
    position:relative;
    z-index: 0;
    top: 46%;
    left: 1%;
    height: 100px;
    width: auto;
    background-image: url('https://augment.legal/images/augment-legal-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 0px; /* Adjust the margin value as desired */
}

.ms-partnership-badge-container {
    padding-top: 5%;
    margin-bottom: 20%;
    width: 100%;
    font-size: large;
    text-align: left;
    color: rgb(2, 43, 80);
}
.ms-partnership-badge {
    position:relative;
    z-index: 0;
    bottom: 26%;
    height: 100px;
    width: 234px;
    width: auto;
    background-image: url('https://augment.legal/images/MS_Startups_Celebration_Badge_Light.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 0px; /* Adjust the margin value as desired */
}

/* video */
.video-frame {
    position: relative;
    margin: 1%;
    width: 1000px;
    height: 520px;
  }

@media only screen and (max-device-width: 775px) and (orientation: portrait) {
    .overlay-container {
        width: 90%; /* Increase width on smaller screens */
        left: 10%; /* Center container */
        padding: 10px;
    }

    .form-group {
        max-width: none; /* Allow form groups to fill container on small screens */
        width: 90%;
    }

    .main-text {
        font-size: 100px;
        padding-left: 15px; /* Added padding-left value */
        padding-right: 15px; /* Added padding-right value */
    }

    .tagline {
        font-size: 40px;
        padding-top: 45px;
    }

    .icon {
        position:relative;
        z-index: 0;
        top: 42%;
        left: 1%;
        height: 400px;
    }
    .hero {
        background-position: 35%;
        height: 80vh;
    }
    .footer-links a {
        font-size: 45px;
    }

    .about-text {
        font-size: x-large;
    }

    .about-text-header {
        font-size: xx-large;
    }
}