html {
    height: 100vh;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;    
    font-style: normal;
    font-size: 1.2rem;
    font-variation-settings: "wdth" 100;
}

body {
    min-height: 100vh;
    padding: 0;
    height: 100%;
    margin: 0;    
}

.header {
    background: linear-gradient(to right, #000, #000, #0265db, #0265db);
    height: 100px;
}

.container {
    height: 100vh;
    background-color: #f4f6f9;
    overflow: auto;
}

.content {
    padding:0 16px 0 16px;
    background-color: #fff;
    max-width: 1500px;
    margin: 0 auto;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color:#5c5c5c;
    margin-bottom: 20px;;

}

.columns {
    display: flex;
    justify-content: space-between;
    
    gap: 2rem;
    padding: 50px 0 50px 0;
}

.column {
    flex: 1 1 320px;
    padding: 1rem;    
}

.icon {
    margin-bottom: 50px;
    text-align: center;
}

.icon img {
    border-radius: 0.5rem;
    max-width: 180px;
    box-shadow: 2px 2px 5px;
}

.figure {

}

.figure img {
	max-width: 100%;
	border-radius: 0.5rem;
	box-shadow: 2px 2px 5px;
}

.headline {
    display: flex;
    padding-top: 2rem;
    font-size: 1.6rem;
    font-weight: bold;
    justify-content: center;
}

.title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
}

.description {
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
}

.links {
    margin-top: 1rem;
    font-size: 1.2rem;

}

.links a {
    color: #01063D;
    
    text-decoration: none;
    /* text-decoration: underline; */
    display: block;
    margin: 0.25rem 0;
}

.button-link {
    display: inline-block;
    text-align: center;
    padding: 8px 16px 8px 16px;
    width: fit-content;
    text-decoration: none;
    border: 2px solid #01063D;
    border-radius: 0.25rem;    
    /* outline-color: rgb(25, 118, 210); */
  }
  
  .button-link:hover {
    background-color: #01063D;    
    color: white;
  }
  
  .button-link:active {
    background-color: #b4d2f0;
  }


.footer {
    padding: 30px;
    font-size: 0.8rem;
}

a[href^="mailto:"]
{   
  color: #21409A;
  
}


@media (max-width: 1100px) {
    .columns {
      flex-direction: column;
      align-items: center;
    }
    .column {
      flex: 1 1 100%;
      max-width: 600px;
    }
  }
  