@font-face {
  font-family: 'Impact';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/impact.ttf');
}

:root {
    --primary-color: #fdd700;
}

body {
    background-color: black;
    color: var(--primary-color);
    font-family: 'Impact', sans-serif;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1024px;
    margin: auto;
}

.img-responsive {
    max-width: 100%;
}

.text-center {
    text-align: center;
}

.header-logo {
    text-align: center;
}

.big-text {
    font-size: 45px;
}

.logo {
    max-width: 570px;
    margin-top: -50px;
}

.menu {
    display: flex;
    justify-content: space-evenly;
    background: linear-gradient(0deg, rgb(86,86,86) 0%, rgb(0,0,0) 100%);
}

.menu a {
    color: #e8cc33;
    font-weight: bold;
    font-size: 45px;
    padding: 0 10px;
    background-image: linear-gradient(0deg, #a39533 0%, #e8cc33 50%);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.header-contact {
    display: flex;
    justify-content: space-between;
    max-width: 75%;
    margin: auto;
}

.header-contact a {
    color: #939393;
    font-weight: bold;
    font-size: 45px;
    padding: 0 10px;
    background-image: linear-gradient(0deg, #808080 0%, #bbbbbb 50%);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.homepage {
    margin-top: 40px;
    font-size: 30px;
}

.homepage .welcome p {
    margin: 0;
    font-size: 45px;
    line-height: 1.3;
}

.homepage .bigger-phone {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 40px;
}

.contact p {
    font-size: 45px;
}

.contact a {
    text-decoration: none;
    color: var(--primary-color);
}