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

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.header {
  display: flex;
  padding: 10px;
}

.logo {
  width: 100%;
  max-width: 30vh;
  display: flex;
  align-self: center;
  padding-bottom: 1rem;
}

.content {
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px #ccc;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #4d4d4d;
  padding: 20px 10px;
}

.title {
  color: #fff;
  font-size: 1.8rem;
  padding-bottom: 1rem;
  align-self: center;
}

.contacts {
  align-self: center;
}

.phonecontainer {
  display: flex;
  align-self: right;
  color: #fff;
  font-size: 2rem;
}

.phonecontainer p {
  padding-left: 10px;
}

.phone {
  color: "#fff";
  height: 32px;
}

.emailcontainer {
  display: flex;
  color: #fff;
  font-size: 1.5rem;
  padding-bottom: 40px;
}

.emailcontainer p {
  padding-left: 10px;
}

.email {
  color: "#fff";
  height: 32px;
}

.links {
  display: flex;
  flex-direction: row;
  align-self: center;
  font-size: 1rem;
}

.links p {
  color: #fff;
  padding-left: 5px;
}

.links a {
  display: flex;
  color: #ffffff;
  text-decoration: none;
  padding: 0 5px;
}

.links a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 820px) {
  .phonecontainer p {
    font-size: 1.6rem;
  }
  .emailcontainer p {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 470px) {
  .phonecontainer {
    font-size: 1.5rem;
  }
  .phone {
    height: 24px;
  }
  .emailcontainer {
    font-size: 1rem;
  }
  .email {
    height: 24px;
  }
  .links {
    font-size: 0.8rem;
  }
}
