@import url("variables.css");

body{
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
}
#container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}
#dvd, #livre{
    width: 50%;
    height: 100%;
    position: relative;
   
}
#dvd{
    margin: 0;
    padding: 0;
    background: url('/img/dvd.jpg') no-repeat center center ;
    background-size: cover;
}
#livre{
    margin: 0;
    padding: 0;
    background: url('/img/livres.jpg') no-repeat center center ;
    background-size: cover;
}
#dvd a, #livre a{
    padding: 5px 40px;
    background-color: var(--light);
    color: var(--primary-color);
    position: absolute;
    transform: translateX(50%);
    top: 70%;
    right: 50%;
    font-size: 28px;
    border-radius: 20px;
    text-decoration: none;
}
#logo{
    width: 250px;
    object-fit: contain;
    position: absolute;
    top: 40px;
    right: 50%;
    transform: translateX(50%);
    z-index: 100;
}
@media (max-width: 700px){
    #container{
        flex-direction: column;
    }
    #dvd, #livre{
        width: 100%;
    }
}