@font-face {
    font-family: 'NunitoSans-Regular';
    src: url('fonts/NunitoSans-Regular.ttf') format('truetype');
  }
  @font-face {
    font-family: 'NunitoSans-Bold';
    src: url('fonts/NunitoSans-Bold.ttf') format('truetype');
  }


body
{
padding: 0px;
margin: 0px;
}

#background
{
    z-index: -1;
    background: url(images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    background-position: center;
}

#header
{
    z-index: 1;
    background-color: #ffffffc0;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    
}

#logo1
{
    float:left;
    height: 3.5rem;
}
#logo2
{
    float:right;
    height: 70%;
}

#banner
{
    background-color: #ffffffc0;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 40%;
    padding: 2.5rem;
}

#bannerDescription
{
    text-align: left;
    font-family: "NunitoSans-Regular";
    padding: 2.5rem;
}
#bannerDescription b
{
    font-family: "NunitoSans-Bold";
}
#bannerButton
{
    font-family: "NunitoSans-Bold";
    padding: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: #005594;
    color: white;
    position: relative;
    margin: auto;
    text-align: center;
    width: 20%;
    margin-top: 1.5rem;
    transition:0.5s;
}

#bannerButton:hover
{

    background-color: #002744;
    cursor: pointer;
}


/*RESPONSIVENESS*/
@media only screen and (max-width: 600px) {
    /* For phone: */

    #banner
    {
        width: 80%;
        margin-left: 0px;
        margin-right: 0px;
        padding: 10px;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    #header
    {
        padding: 10px;
    }
    #logo1{height: 30px;}
    #logo2{height: 30px;}
}

@media only screen and (min-width: 600px) {
    /* For tablets: */
    #banner
    {
        width: 70%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}


@media only screen and (min-width: 900px) {
    /* For desktop: */
   
    #banner
    {
        width: 40%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}