*{
    margin: 0;
    padding: 0;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #282828;
    color: #ffffff;
}

main{
    height: 100vh;
    display: grid;
    grid-template-columns: 40% 60%;
}

nav{
    position: fixed;
    top: 0;
    width: 35%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
}

nav p{
    font-size: 2rem;
    font-weight: normal;
    color: #ffffff;
}

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

header{
    height: 100%;
    padding: 0rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header h1{
    font-size: 5rem;
    color: #ffffff;
}

header p{
    padding: 2rem 0rem;
    font-size: 1.5rem;
    color: #ffffff;
}

a{
    color: black;
    text-decoration:underline black;
}

a:visited:active{
    color: black;
    text-decoration: none;
}

.landingImage{
    height: 100vh;
    width: 50vw;
    pointer-events: none;
}

.imageHolder{
    background-color: #181818;
}

.ticketButton{
    font-weight: bold;
    padding: 1rem 2rem;
    color: white;
    background-color: rgb(152, 200, 219);
    border: none;
    box-shadow: 5px 5px rgb(197, 239, 255);
    margin-right: 2rem;
}

.ticketButton:hover{
    padding: 1rem 2.2rem;
}

.logo{
    width: 2rem;
}

.intro{
    background-color: rgb(44, 43, 43);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation-name: slide;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;  
}

@keyframes textAnim{
    from{transform: translateY(100%)}
    to{transform: translateY(0%)}
}

@keyframes slide{    
    from{transform: translateY(0%);}
    to{transform: translateY(-100%)}
}

.hide .text{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3rem;
}

.hide{
    background-color: rgb(44, 43, 43);
    overflow: hidden;
}

.hide span{
    animation-name: textAnim;
    animation-duration: 1s;
    display: inline-block;
}