* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}
@font-face {
    src: url(fonts/PressStart2P-Regular.ttf);
    font-family: pressStart2P;
}
body {
    background-color: black;
    margin: 0;
    height: 100vh;
    position: relative;
    box-sizing: border-box;
    border-top: 35px solid #20C20E;
    border-bottom: 10px solid #20C20E;
    border-left: 10px solid #20C20E;
    border-right: 10px solid #20C20E;
    background-image: url("images/background.gif");
    background-repeat: repeat; 
    background-size: 280px 280px; 
    background-color: black;
}  
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    height: 100vh;
    position: relative;
}
.top-border-text {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 13px;
    padding: 0 10px;
    font-family: pressStart2P , monospace;
    white-space: nowrap;
}
.start-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    position:absolute;
    top: 55%;
    
}
.start-button {
    width: 480px;
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
    align-self: center;
}
.lolow-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    position: absolute;
    top: 3%;

}
.lolow-logo {
    width: 450px;    
    height: auto;
    align-self: center;
    cursor: pointer;
}

.lolow-logo:active {
    transform: scale(1.1);
}
.about-container {
    display: flex;
    justify-content: left;   
    align-self: flex-start;
    position: absolute;
    top: 1px;
    left: 10px;
}
.about-button {
    width: 120px;
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
    align-self: flex-start;
    
}
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}