* {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: white;
    box-sizing: border-box;

}

body{
    background-color: #f3aa1d;
     
}

.homePageElements{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    text-align: center;
    gap: 20px;
}
.login {
    display: flex;
    gap: 30px;
}

.homePageElements h1 {
    cursor: pointer;
    background-color: #4f2e1d;
    padding: 10px 28px;
    border-radius: 11px;

    font-size: clamp(2rem, 10vw, 4rem); 
    transition-duration: 0.3s;

}

.homePageElements h1:hover {
    transform: scale(0.9);
    color:#f3aa1d;
    

    font-size: clamp(2rem, 12vw, 4rem); 
}



.play a button{
    text-align: center;
    border: none;
    background-color: #4f2e1d;
    padding: 5px 24px;
    font-size: clamp(1rem, 7.5vw, 2rem);
    cursor: pointer;
    border-radius: 11px;
    transition-duration: 0.5s;
}

.login a button{
    text-align: center;
    border: none;
    background-color: #4f2e1d;
    padding: 5px 24px;
    font-size: clamp(0.8rem, 4.4vw, 1.5rem);
    cursor: pointer;
    border-radius: 10px;
    transition-duration: 0.5s;
}
.play a button:hover{
    transform: scale(1.4);
    background-color: #362014;
    color: #f3aa1d;
}

.login a button:hover{
    transform: scale(1.2);
    background-color: #362014;
    color: #f3aa1d;

}
.banner{
    padding: 7px;
    background-color: #4f2e1d;
    overflow: hidden;
    width: 100%;
}

.banner .bannerContent{
    margin: 12px;
    font-size: 20px;
    
}
.bannerText p{
    white-space: nowrap;
    display: inline-block;
    padding-left: 0;
    animation: slide-right-to-left 30s linear infinite;
}

.bisonImg img{
    width: 350px;
    height: 350px;
}
@keyframes slide-right-to-left {
  0% {
    transform: translateX(100vw); 
  }
  100% {
    transform: translateX(-100%); 
  }
}
body, html{
    margin: 0;
}


