/* Lars-NFQ Project */

body {
    background-image: url('./assets/hero1.png');
    background-repeat: no-repeat;
    background-attachment: fixed;  
    background-size: cover;
    background-position: center top;
}

/* Logo original size is 766x343 px */
.logo {       
    width: 306.4px;
    height: 154.9px;
}

.ico {       
    color: white;
    font-size: 27px;
    padding-top: 2px;
    padding-left: 5px;
}

.ico-in {       
    color: white;
    font-size: 31px;
    padding-top: 2px;
    padding-left: 7px;
}

.text {
    color: white;
    font-family: 'Verdana';
    font-size: 17px;
    
    margin-bottom: 0;
    margin-left: 2em;
}

a {
    color: white;
    text-decoration: none; /* no underline */
}

.btn-ct {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 32px;
    font-family: 'Verdana';
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 6px;
  }
  
  .btn-ct:hover {
    background-color: white;
    color: #F96600;
  }

/* On screens that are 320px or less, decrease size of contents */
@media screen and (max-width: 320px) {
    .logo {       
        width: 229.8px;
        height: 116.2px;
    }
    .ico {       
        font-size: 21px;
    }
	.ico-in {       
        font-size: 21px;
    }
    .text {        
        font-size: 11px;        
    }
    .btn-ct {      
        padding: 8px 22px;     
        font-size: 10px;     
        margin: 4px 2px;
      }
}