﻿#loginBtns a {
    min-width: 220px;
}

/* Small devices (portrait tablets and large phones, 600px and below) */
@media only screen and (max-width: 600px) {
    #loginBtns a:nth-child(even) {
        margin: 1rem 0;
    }
  .h1 {
    font-size: 98px;
    line-height: 120px;
  }
    #loginBtns div, #loginBtns{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/* Small devices (portrait tablets and large phones, 570px and up) */
@media only screen and (min-width: 570px) {
    #loginBtns div {
        flex-direction: row;
    }
  .h1 {
    font-size: 98px;
    line-height: 120px;
  }

    #loginBtns a {
        margin: 1rem 0;
    }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #loginBtns a {
        margin: 1rem 0;
    }
    #loginBtns {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    #loginBtns div{
        justify-content: space-between;
        flex-direction: row;
    }
    .h1 {
        font-size: 79px;
        line-height: 70px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #loginBtns a {
        margin: 1rem;
    }

}


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    #loginBtns {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .h1 {
    font-size: 98px;
    line-height: 120px;
  }
}
/* Extra large devices (large laptops and desktops, 1400px and up) */
@media only screen and (min-width: 1400px) {
    #home-container{
        height: 550px !important;
    }
    .h1 {
        font-size: 90px;
        line-height: 100px;
    }
    #loginBtns a{
        font-size: 25px;
    }
        #loginBtns a span svg {
            height: 25px;
            width: 25px;
        }
}
