@font-face {
    font-family: Boston;
    src: url('/fonts/Boston-Regular.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: Boston;
    src: url('/fonts/Boston-RegularIt.otf');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: Boston;
    src: url('/fonts/Boston-Bold.otf');
    font-weight: bold;
    font-style: normal;
}


:root {
    --border-color: #173943;
    --color-bg: #003a4460;
    --dark-bg: rgb(0, 0, 0);
    --light-blue: #2486cc;
    --light-yellow: #f0a63b;
    --dark-yellow: #48320b;

}

* {
    box-sizing: border-box;
}

body {
    background-color: black;
    color: #ffa300;
    margin: 0;
    font-family: Boston, Arial, Helvetica, sans-serif;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    min-height: 100vh;
}

h1 {
    
  text-transform: uppercase;
}

a {
    color: inherit;
}

div {
    padding: 10px;
}

.logo {
    width: 100%;
    height: 20px;
    margin: 10px;
}

.header-right{

   display: flex;
   flex-direction: row;
    align-items: center;
}

header ul {
    margin: 0;

}

header ul li{
    display: inline-block;
    margin: 0 20px;
    font-weight: bold;
}

.description {
    color: white;
}



.logo-mewts img {
     max-width: 300px;
     height: auto;
}

section {
    /* background-color: #003a44; */
     border-radius: 20px;
     padding: 20px;
    /* font-weight: bold; */
     width: 100%;
}

header {
    display: flex !important;
    flex-direction: row;
        width: 100%;
    justify-content: space-between;
}

.newsletter {
    margin-top: 2em;
}

.data-processing {
    text-align: left;
}

footer {
  
    padding: 1em;
    text-align: center;
}

.borders {
  border-bottom: 1px solid #ffa300; 
  outline: 5px solid rgb(0, 0, 0);
  margin-bottom: 5px;
}

.newsletter {
    
}

.borders-reversed {
  border-top: 1px solid #ffa300; 
  outline: 5px solid rgb(0, 0, 0);
  margin-top: 5px;
  width: 100%;

}

.hero {
    height: 50vh;
    width: 100%;
    background-image: url(media/carousel/web_screen_00.png);
    background-position:20% 50%;
    background-size: cover;
}

.flex-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flex-row div {
    margin: 0 2em;
}

.text-center {
    text-align: center;
}