body {
    background-color: black;
    overflow: hidden;
}

.takes-brand {
    position: fixed;
    padding: 15px;
    padding-left: 35px;
    color: white;
    font-size: 28px;
    font-family: 'Cabin', sans-serif;
}

.takes-release {
    position: fixed;
    right: 0%;
    padding: 15px;
    padding-right: 35px;
    color: rgb(63, 70, 77);
    font-size: 20px;
    font-family: 'Cabin', sans-serif;
}

.takes-beta {
    position: fixed;
    right: 0%;
    padding: 5px 15px;
    margin-top: 15px;
    margin-right: 35px;
    color: black;
    font-size: 20px;
    font-family: 'Cabin', sans-serif;
}

.takes-logo {
    height: 100vh;
}

.takes-logo > svg {
    width: 100%;
    max-width: 500px;
}

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

#Layer_1 path:nth-of-type(1) {
    animation-name: moveDown;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  
#Layer_1 path:nth-of-type(2) {
    animation-name: moveUp;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  
  @keyframes moveDown {
    from {transform: translateY(-30px);}
    to {transform: translateY(0px);}
  }
  
  @keyframes moveUp {
    from {transform: translateY(30px);}
    to {transform: translateY(0px);}
  }
  

@media (max-width: 500px) {
    .takes-brand {
        padding-left: 15px;
    }
    .takes-release {
        padding-right: 15px;
    }
    .takes-logo {
        padding: 15px;
    }
}

.page-1 {
    display: block;
}
.page-2 {
    display: none;
}

#countdown {
    text-align: center;
    font-size: 21px;
    font-weight: 500;
    background: rgb(238, 239, 240);
    color: rgb(218, 32, 32);
    border-radius: 8px;
    padding: 15px;
  }