﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  font-family: 'Open Sans', sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10vh;
}

.logo {
  width: 30vw;
  height: auto;
  margin-bottom: 2rem;
}

@media (orientation: portrait) {
  .logo {
    width: 80vw;
  }
}

.contact {
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
}
