@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



:root {
    font-size: calc(1vw + 1vh);
    color: white;
    font-family: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}


body {
    height: 100dvh;
    width: 100dvw;
    margin: 0;
    padding: 0;
    overflow-y: hidden;
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: background-image 1s ease-in-out;
  filter: blur(0px) brightness(0.5);
  background-image: url('assets/MainStreet.jpg');
  background-color: black;
  scale: 1.1;
}

.screenSizedBox {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: fit-content;
    height: 75%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
}

.about-content > * {
    height: min-content;
    text-align: center;
}
.about-link {
    background: rgba(150,150,150,0.2);
    padding: 0.5rem 1rem;
    display: block;
    min-width: max-content;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.1s cubic-bezier(0.4,0,0.2,1), background 0.1s cubic-bezier(0.4,0,0.2,1);

}

.about-link:hover {
    background: rgba(200, 200, 200, 0.2);
    transform: scale(1.05);
}

.transition-opacity-transform {
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.initial-transform-opacity {
    opacity: 0;
    transform: translateY(50px);
}

#home {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

#home a {
    background: white;
    color: black;
    padding: 0.5rem 3rem;
    transition: transform 0.1s cubic-bezier(0.4,0,0.2,1);
}

#home a:hover {
    transform: scale(1.05);
}

#coming-soon {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.images-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

#corner-logo {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 10;
    width: 5rem;
    height: auto;
}

.size-3 {
    width: auto;
    height: 3rem;
}

#cs-back {
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border: 0;
    color: white;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 7%;
    left: calc(50% + 14rem);
    transform: translateY(-50%);
    height: fit-content;
}