:root {
    --darkest: #000000;
    --dark: rgb(76, 76, 76);
    --accent: rgb(255, 116, 0);
    --light: white;
}

html{
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Bebas Neue";
    src:
      local("Bebas Neue"),
      url("/static/fonts/BebasNeue.otf") format("opentype");
}
@font-face {
    font-family: "Montserrat extralight";
    src:
      local("Montserrat extralight"),
      url("/static/fonts/MONTSERRAT-EXTRALIGHT.OTF") format("opentype");
}
@font-face {
    font-family: "Montserrat light";
    src:
      local("Montserrat light"),
      url("/static/fonts/MONTSERRAT-LIGHT.OTF") format("opentype");
}
@font-face {
    font-family: "Montserrat regular";
    src:
      local("Montserrat regular"),
      url("/static/fonts/MONTSERRAT-REGULAR.OTF") format("opentype");
}
@font-face {
    font-family: "Montserrat bold";
    src:
      local("Montserrat bold"),
      url("/static/fonts/MONTSERRAT-BOLD.OTF") format("opentype");
}

body {
    font-family: "sans-serif";
    font-family: "Montserrat regular";
    margin: 0px;
    height: 100%;
}

h1{
    font-family: "Montserrat light";
}

.flex{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-flow: row wrap;
}

.divider {
    width: 100%;
    background-color: var(--dark);
    color: var(--light);
    position: relative;
    text-align: center;
}

.logo {font-family: "Montserrat bold";}
.logo div {display: inline-block;}
.logo hr {
    color: inherit;
    box-sizing: border-box;
    border: 0 none transparent;
    border-top: 1px solid;
}

button {
    background-color: var(--accent);
    color: var(--light);
    border: none;
    font-family: "Montserrat bold";
    transition: all 0.2s ease;
}

button:hover {
    background-color: var(--light);
    color: var(--accent);
}

.bookmark {
    position: absolute;
}

#header {
    font-size: 24px;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    border-bottom: 5px solid var(--light);
    background-color: var(--darkest);
    width: 100%;
    color: var(--light);
}

#header h1{
    font-family: "Montserrat extralight";
}

.menu {
    flex-grow: 3;
    text-align: center;
}

.menu a {
    color: var(--light);
    text-decoration: none;
    font-family: "Montserrat bold";
}

a.active {
    color: var(--accent);
}

#opening-page{
    overflow: hidden;
    position: relative;
}

#opening-box{
    color: var(--light);
    background-size: 100% 100%;
    width: 30%;
    position: relative;
    z-index: 0;
}

#opening-box h1 {
    font-family: "Bebas Neue";
}

#opening-box>.logo{
    color: var(--darkest);
}

.info-page{
    background-image: url("/static/images/logo-fekete.png");
    background-color: rgba(255,255,255,0.95);
    background-blend-mode: lighten;
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--darkest);
    position: relative;
}

.info-page h1 {
    color: var(--accent);
    margin-left: auto;
    margin-top: 0;
}

.service img{
    border: 1px solid var(--dark);
    border-radius: 5%;
    width: 40%;
    background-color: var(--light);
    aspect-ratio: 1/1;
    object-fit: contain;
}

#services .flex{
    margin: auto;
    justify-content: center;
    align-items: flex-start;
}

#pricing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-image: url("/static/images/paralelogram.png");
    background-size: 100% 100%;
    color: var(--light);
    flex-direction: column;
    justify-content: center;
}

#contact-div {
    position: relative;
}

#contact-div>img {
    width: 100%;
}

#contact-form{
    background-color: var(--dark);
    color: var(--light);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.input-box {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

#contact-form .flex {
    width: 100%;
    align-items: flex-end;
}

#about-us p{
    font-family: "Montserrat light";
    margin: auto;
}

#logo-tile{
    background-color: var(--darkest);
    color: var(--light);
}

#contact-tile{
    background-color: var(--accent);
    color: var(--light);
}

#address2-p, #phone-num-p{
    font-family: "Montserrat light";
}
