a {
  color: white;
  text-decoration: none; }

html {
  height: -webkit-fill-available; }

body {
  font-family: sans-serif;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  background-image: url(img/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin: 0;
  padding: 50px; }

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 100%; }
  main .logo {
    width: 35%;
    display: flex;
    align-items: flex-start;
    flex: 1;
    flex-direction: column;
    align-items: center; }
    @media (max-width: 600px) {
      main .logo {
        width: auto; } }
    main .logo img {
      width: 100%;
      height: auto; }
    main .logo a {
      background-color: #80cbc6;
      padding: 10px 20px;
      margin-top: 40px; }
  main ul {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #80cbc6;
    color: white;
    display: flex;
    margin: 0;
    padding: 20px;
    gap: 30px; }
    @media (max-width: 600px) {
      main ul {
        flex-direction: column;
        align-items: flex-start; } }
    main ul li {
      display: flex;
      align-items: center;
      gap: 5px; }
