body{
    display: flex;
    flex-direction: column;
    overflow: hidden;

    height: 100vh;
    width: 100vw;
}

main, .split-section{
    display: flex;
    flex: 1;
}

.logo {
    height: 45px;
    padding: 0;
    margin: 32px 0px 0px 0px;
}

h1 {
    font-size: 35px;
    padding: 0;
    margin: 0px 0px 25px 0px;
}

.split-section{
    align-items: center;
    justify-content: center;
    position: relative;
    
    background-size: cover;
    background-position: center;

    transition: flex 0.5s ease;
}

.split-section:hover{
    flex: 1.2;
}

.split-section img{
    object-fit: contain;

    max-width: 80%;
    height: 250px;
    width: 500px;
    max-height: 250px;
    width: auto;
    
    transition: transform 0.5s ease;
}

.split-section:hover img{
    transform: scale(1.1);
}

#gta6-section{
    background-image: url('/assets/img/projects/countdown/backgrounds/background-gta6.png');
}

#re9-section{
    background-image: url('/assets/img/projects/countdown/backgrounds/background-re9.png');
}

#rev-section{
    background-image: url('/assets/img/projects/countdown/backgrounds/background-rev.jpg');
}