/**
  Normalize block models
 */
*,
::before,
::after {
    box-sizing: border-box;
}

/**

  Remove margins left and right, if tags have class attr
 */
:where(ul, ol):where([class]) {
    padding-left: 0;
}

/**
  Remove body spaces if has class attr
 */
body,
:where(blockquote, figure, fieldset):where([class]) {
    margin: 0;
}

/**
 remove vertical margins
 */
:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  dl
):where([class]) {
    margin-block: 0;
}

:where(dd[class]) {
    margin-left: 0;
}

:where(fieldset[class]) {
    padding: 0;
    border: none;
}

/**

  Remove default marker of list
 */
:where(ul[class]) {
    list-style: none;
}

:where(address[class]) {
    font-style: normal;
}


p {
    --paragraphMarginBottom: 10px;

    margin-block: 0;
}


p:where(:not([class]):not(:last-child)) {
    margin-bottom: var(--paragraphMarginBottom);
}


img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

/**
  inherit font for placeholders
 */
input,
textarea,
select,
button {
    font: inherit;
}

html {
    height: 100%;
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

body {

    min-height: 100%;
    line-height: 1.5;
}

/**
  Normalize a height
 */
a:where([class]) {
    display: inline-flex;
}

/**
 cursor pointer
 */
button,
label {
    cursor: pointer;
}

/**
  remove gray highlight on tap (iOS/Android)
 */
button {
    -webkit-tap-highlight-color: transparent;
}

/**
  one color fill for all svg
 */
:where([fill]:not(
  [fill="none"],
  [fill^="url"]
)) {
    fill: currentColor;
}

/**
 one color stroke for all svg
 */
:where([stroke]:not(
  [stroke="none"],
  [stroke^="url"]
)) {
    stroke: currentColor;
}


svg * {
    transition-property: fill, stroke;
}

:where(table) {
    border-collapse: collapse;
    border-color: currentColor;
}

/**
  remove all transition animation
 */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

h1 {
    font-weight: 700;
    font-size: 22px;
}
a {
    font-size: 14px;
    color: #ff6600;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

html {
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(#000, 0);
    margin-right: 0;
}
body {
    font-size: 16px;
    font-family: "Ubuntu", Helvetica, Arial, Verdana, sans-serif;
    color: #333333;

    scrollbar-width: none;
    word-break: keep-all;
    word-wrap: break-word;
    text-rendering: optimizespeed;
    overflow-y: scroll;
    height: 100%;
    overscroll-behavior: contain;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    padding-bottom: env(safe-area-inset-bottom);
}
.wrapper {
    padding: 40px 20px;
}
.sailboat {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.sailboat .sailboat__header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    z-index: 1;
}
.sailboat .sailboat__header--title {
    margin-bottom: 16px;
    text-align: center;
}
.sailboat .sailboat__header--links {
    color: #ff6600;
}
.sailboat .sailboat__body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sailboat .sailboat__body .sailboat__spec {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    white-space: nowrap;
    z-index: 1;
}
.sailboat .sailboat__body .sailboat__spec.spec-left {
   text-align: right;
}
.sailboat .sailboat__body .sailboat__spec.spec-right {
    text-align: left;
}

.sailboat .sailboat__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    margin-top: auto;
    text-align: center;
}
.sailboat .sailboat__footer .sailboat__footer--links {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sailboat .sailboat__footer .sailboat__footer--links a {
    margin-bottom: 10px;
}
.sailboat .sailboat__footer .sailboat__footer--info {
    font-size: 14px;
}
.sailboat .sailboat__footer .sailboat__footer--info a{
    color: #333333;
}

/*media*/
@media only screen and (max-width: 630px) {
    .sailboat .sailboat__body {
        column-gap: 40px;
    }
    .sailboat .sailboat__footer {
        margin-top: 50px;
    }
    .sailboat .sailboat__body .sailboat__spec {
        margin-top: 80px;
        text-align: center !important;
        font-size: 15px;
    }
    .sailboat .sailboat__body .sailboat__img{
        position: absolute;
        top: 0;
        z-index: 0;
        opacity: .5;
    }
}

/*animations*/
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-70px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(70px);
    }
    to {
        opacity: 1;
        transform: translateX(-0px);
    }
}
.fade-in-left-block {
    animation-name: fadeInLeft;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
.fade-in-right-block {
    animation-name: fadeInRight;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
.fade-in-block {
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}