*{
    margin: 0;
    padding: 0;
}
.main-container-grid{
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0;
    box-sizing: border-box;
    padding: 2%;
}
.upper-logo-container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.speedy-logo-hyper{
    width: 15%;
    min-width: 259px;
    min-height: 64px;
    max-width: 259px;
    max-height: 64px;
}
.speedy-logo{
    width: 100%;
    height: 100%;
}
.flex-column-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Poppins';
    text-align: center;
}
.disabled-svg-file{
    width: 30%;
    height: auto;
}
.back-hyper{
    box-sizing: border-box;
    background: black;
    font-family: 'Poppins';
    color: white;
    font-weight: 600;
    padding: 1% 2%;
    border-radius: 10px;
    text-decoration: none;
    transition: .3s ease-in-out all;
}
.back-hyper:hover,
.back-hyper:active{
    background: black;
    color: rgb(223, 223, 223);
}
@media screen and (min-width: 0px) and (max-width: 900px)
{
    .upper-logo-container{
        margin-top: 10%;
        justify-content: center;
    }
   .speedy-logo-hyper{
       width: 200px;
       height: auto;
       min-width: 0;
       min-height: 0;
   } 
    .flex-column-container h1{
        font-size: 150%;
    }
}
