

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
   font-family: Impact;
}

.container{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content{
    text-align: center;
}

.content h1{
    font-size: 95px;
    color: #2973c7;
    margin-bottom: 50px;
}

.content a{
    font-size: 23px;
    color: #929aa5;
    text-decoration: none;
    border: 1px solid #b0afb9e5;
    padding: 1px 10px;
    border-radius: 50px;
    transition: 0.3s;
}

.content a:hover{
    background-color: #003fece3;
    color: #000;
}

.background-clip{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (min-aspect-ratio:16/9) {
    .background-clip{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio:16/9) {
    .background-clip{
        width: auto;
        height: 100%;
    }
}

.mobile-text-box 
{
  display: none; /* Hide by default */
  position: absolute;
  top: 50%; /* Adjust as needed */
  left: 50%; /* Adjust as needed */
  transform: translate(-50%, -50%);
  z-index: 1000; /* Adjust as needed to ensure it's above your video */
}

@media only screen and (max-width: 480px) {
  .mobile-text-box {
    display: block;
    margin: 10px;

    font-size: 20px;
    color: #929aa5;
    text-decoration: none;
    border: 1px solid #b0afb9e5;
    padding: 1px 10px;
    border-radius: 50px;

  }
}
