:root {
    --primary-font: 'Roboto', system-ui, sans-serif;

    /* Colors */
    --white: #ffffff;
    --gray: #161516;
    --pink: #ff95b7;

}

*, *::before, *::after {
    box-sizing: border-box;
  }
* {
    margin: 0;
  }
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
p, h1, h2 {
    overflow-wrap: break-word;
  }

body {
    background: url(img/site-bg.webp) no-repeat center center var(--gray);
    background-size: cover;
    color: var(--white);
    font-family: var(--primary-font);
    font-size: 1rem;
    text-shadow: 1px 1px 0px var(--gray);
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(100%,calc(100vw - 2rem), 1200px);
    min-height: 100svh;
    flex-direction: column;
    padding: 0 2rem;
    text-align: center;
}

a {
  color: white;
  text-decoration: none;
  transition: all ease-in-out .2s;
}
a:hover, a:focus {
  color: var(--pink);
  text-decoration: underline;
}

div.top, div.bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
div.top {
  margin-bottom: .25rem;
}

h1.logo {
  display: block;
  width: 100%;
  height: clamp(75px, 80px, 91px);
  margin-inline: auto;
  background: url('img/logo.png') no-repeat center center;
  background-size: contain;
}

span.text-big {
  margin: 1.25rem auto;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(1.25rem, 0.5000rem + 3.3333vw, 2.25rem);
}

div.bottom p {
  font-size: clamp(0.95rem, 0.8187rem + 0.5833vw, 1.125rem);
  max-width: 90ch;
}

div.bottom p strong {
  display: block;
  padding-bottom: .45rem;
  font-weight: 800;
  text-decoration: underline;
}

.col-3-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
}

.col-3-row > .col-1 {
  flex-basis: 33.33333%;
  align-content: center;
  margin-bottom: 1.5rem;
}

.border-rounded {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background-color: white;
  border-radius: 50%;
  position: relative;
  margin-bottom: 1rem;
  transition: all ease-in-out .2s;
}
.border-rounded::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  z-index: 10;
}
.mail::after {
  background-image: url(img/envelope.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.address::after {
  background-image: url(img/maps-and-flags.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.phone::after {
  background-image: url(img/phone-call.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

a:hover .border-rounded, a:focus .border-rounded {
  scale: 1.1;
}

@media (max-width:799px) {
  span.text-big { margin: 0 auto 1rem; }
  .col-3-row { flex-direction: column; }
  .col-3-row > .col-1 { flex-basis: 100%;}
  .border-rounded { width: 60px; height: 60px; }
  .border-rounded img { width: 50%; }

}