@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&display=swap');

:root {
  --color-primary-light: #bde2da;
  --color-primary-dark: #4ca09c;
  --color-secondary: #8e3d62;
  --gap: 8px;
  --gap-m: 16px;
  --gap-l: 32px;
  --gap-xl: 56px;
}

* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-primary-light);
  display: block;
  position: relative;
  padding: var(--gap-m);
}

.container {
  z-index: 10;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 350px;
  width: 50%;
  margin-bottom: var(--gap-xl);
}

.contact {
  color: var(--color-secondary);
  list-style: none;
  margin: 0;
  margin-left: var(--gap-m);
  padding: 0;
}

.contact__container {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: var(--gap-m);
}

.contact__link {
  color: var(--color-secondary);
  text-decoration: none;
  position: relative;
  display: inline-block;
  margin-left: var(--gap);
  font-size: 16px;
  text-transform: uppercase;
}

.contact__details {
  display: block;
}


@media only screen and (min-width: 768px) {

  body::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url('./img/sygnet.svg');
    background-repeat: no-repeat;
    background-size: contain;
  }
  
  body::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-image: url('./img/sygnet.svg');
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
  }

  .contact__details {
    display: inline;
  }
}