@font-face {
  font-family: 'Montserrat-Regular';
  src: url('C:/Users/skaskiewiczk/Documents/projects/ttsicloudecrfstarterpage/assets/fonts/Montserrat/Montserrat-Regular.ttf');
}

body {
  font-family: 'Montserrat-Regular';
}

a {
  text-decoration: none;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  color: #231F20;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1099F4;
}

p {
  font-size: 26px;
  font-weight: 600;
  color: #231F20;
}

.navbar-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 30px;
}

.logo {
  max-width: 100%;
  height: auto;
}

.navbar-links {
  display: flex;
  gap: 20px;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
  border-radius: 4px;
  z-index: 1;
}

.lang-dropdown-content a {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  gap: 5px;  
  color: #000;
}

.lang-dropdown:hover .lang-dropdown-content {
  display: block;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.main-img {
  margin-left: 60px;  
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 450px) {
  .main {
    display: block;
  }
}