/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html {
    height: 100%;
}

body {
  background-color: white;
  color: black;
  font-family: Verdana;
  background-image: url('wallpaperflare.com_wallpaper.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  flex-direction: column;
}

.mainContainer {
    width: 75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.yuriContainer {
    position: absolute;
    margin-left: -5.5rem;
    margin-top: 15rem;    
}

.borderedElement {
    border-style: double;
    border-color: #789EB0;
    border-width: 0.3rem;
    background-color: #010101;
}

.titleBar {
    flex-grow: 1;
    max-height: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blinkeeScroller {
    flex-grow: 1;
    max-height: 2.5rem;
    min-height: 2.5rem;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.scrolling {
  animation: marquee 120s linear infinite;
  display: inline-block;
  padding-right: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to { 
    transform: translateX(-2050%);
  }
}

.mainGrid {
    flex-grow: 1;
    min-height: 50rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    column-gap: 1rem;
}

.leftContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pictureContainer {
    flex-grow: 1;
    max-height:18rem;
}

.aboutContainer {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap: 1rem;
}

.contentContainer {
    flex-grow: 1;
    width: 100%;
}

.pContainer {
    display: flex;
    gap: 1rem;
    margin: 0.5rem;
}

.titleContainer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: dotted;
    border-color: #789EB0;    
}

.docText {
    color: white;
    margin: 0;
    font-weight: normal;
}

.rightContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.petContainer {
    flex-grow: 1;
    display:flex;
    justify-content:center;
    max-height: 20rem;
}

.buttonContainer {
    display:flex;
    justify-content:center;
    flex-direction:column;
    align-items:center;
}

.titleText {
    color:white;    
}

.videoContainer {
    flex-grow: 1;
    max-height: 13.3rem;
}

.neighborContainer {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.linksContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-grow: 1;
}