*{
    margin: 0;
    padding: 0;
}
.main-outer-container-bugs{
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-image: url('images/bugs-background-rev.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    place-items: center;
}
.logo-text-left-side{
    width: 95%;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 2.5%;
}
.speedy-outer{
    width: 40%;
    height: auto;
}
.speedy-logo-inner{
    width: 100%;
    height: 100%;
}
.slogan-text{
    font-size: 400%;
    font-family: 'Poppins';
    color: white;
    font-weight: 700;
    width: 100%;
}
.form-right-side{
    background: white;
    margin-right: 2.5%;
    height: 100%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 70px;
    text-align: center;
}
h1{
    font-family: 'Inter';
    font-size: 150%;
    width: 80%;
}
.bugs-input-styling{
    width: 80%;
    box-sizing: border-box;
    padding: 2%;
    border-radius: 15px;
    border: none;
    background: #F3F3F3;
    resize: none;
    transition: .4s ease-in-out all;
}
.bugs-input-styling::placeholder{
    font-family: 'Inter';
}
.outer-container-right-side{
    width: 95%;
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.submit-button-bugs{
    background: #ec1f269b;
    color: white;
    font-size: 125%;
}
.enabled-submission-button:hover,
.enabled-submission-button:active{
    filter:brightness(.8);
}
.back-hyperlink{
    box-sizing: border-box;
    font-family: 'Inter';
    font-weight: 700;
    transition: .4s ease-in-out all;
    color: white;
    background: #EC1F27;
    padding: 4%;
    text-decoration: none;
    border-radius: 5px;
    width: 80%;
}
.back-hyperlink:active,
.back-hyperlink:hover{
    background: #aa151a;
    color: rgb(215, 215, 215);
}
.bugs-outcome-imagery{
    width: 10%;
    height: auto;
}
.subtext-outcome{
    font-family: 'Inter';
    font-weight: 400;
    width: 80%;
}
@media screen and (min-width: 0px) and (max-width: 500px)
{
    .main-outer-container-bugs{
        display: grid;
        grid-template-columns: 1fr;
    }
    .logo-text-left-side{
        display: none;
    }
    .outer-container-right-side{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .form-right-side{
        width: 70%;
        height: 80%;
        margin-right: 0;
    }
    @media screen and (max-width: 225px)
    {
      h1{
          font-size: 120%;
      } 
    }
}
@media screen and (min-width: 501px) and (max-width: 900px)
{
    .slogan-text{
        font-size: 200%;
    }
}