:root {
    --bg_color: #1467B5;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


h1.sText {
    color: lightgray;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
}

h3.sText {
    color: black;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
}

h5.sText {
    color: black;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
}


h5.sText-lightgray {
    color: lightgray;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
}

h5.sText-left {
    color: black;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    margin-left:30px;
}

.myButton, .myButtonContact {
    text-align: center;
    color: white;
    border: none;
    width: 220px;
    height: 60px;
    font-size: 20px;
}

.myButtonContact {
    background-color: gray;
}

.myButton {
    background-color: var(--bg_color);
}

.welcomeText {
    color: white;
    text-align: center;
    font-family: Arial;
    font-size: 80px;
    padding-top:40px;
}

.welcomeText2 {
    color: white;
    text-align: center;
    font-family: Raleway;
    font-size: 40px;
}
.backgroundImage {
    background-image: URL('/Images/Task_BackgroundMain.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-top: 52px;
    min-height: 380px;
}

.myContainer {
    width: 100%;
}

.table-no-border {
    border-collapse: collapse;
    font-family: Raleway;
}

.table-no-border th, .table-no-border td {
    border: none;
    padding: 0;
    font-family: Raleway;
}

img.task-icon {
    filter: grayscale(100%);
    padding: 1px;
    height: 32px;
    width: 32px;
    position:center;
}

.image-task-logo-container {
    width: 200px;
    height: 40px;
    overflow: visible;
    position:relative;
    left: -60px;
}

.image-task-logo-container img {
    width: 100%; 
    height: 100%;
    transition: transform 0.3s ease;
    position:absolute;
    top: 0;
    left: 0;
}

.image-task-logo-container:hover img {
    transform: scale(4.0); /* in % */
    left:160px;
    top:50px;
}