@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    box-sizing: border-box;
    margin:0;
    font-family: Poppins;
}

body{
    position: relative;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2rem;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-y: hidden;
}

.performer-container {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/landing-performer.avif');
    background-size: cover;
}

.developer-container {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
     background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/dev-landingpage.webp');
    background-size: cover;
}

.landing-text {
    color: white;
}

.landing-icon {
    height: auto;
    width: 75px;
}

.centered-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color:white ;/* Adjusts for element's own size */
  text-align: center;
}

.logo-img {
    height: auto;
    width: 10%;

}

.btn {
    background-color: transparent;
    color: white;
    border: 1px white solid;
    padding: 0.7rem;
    font-size: 1.25rem;
    cursor: pointer;
    
}

.performer-container .btn:hover {
    background-color: #e68f48;
}

.performer-container .btn:active {
    background-color: #e68f4895;
}

.developer-container .btn:hover {
    background-color: #c62f98;
}

.developer-container .btn:active {
    background-color: #c62f9994;
}

@media screen and (max-width: 1400px) {

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    .btn {
        font-size: 1rem;
    }

    .landing-icon {
        width: 60px;
    }
}


@media screen and (max-width: 1200px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        height: 95vh;
    }
    
    .developer-container, .performer-container {
        width:100%;
    }

    .centered-element {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color:white ;/* Adjusts for element's own size */
        text-align: center;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        font-size: .8rem;
    } 

    .landing-icon {
        width: 55px;
    }

}