@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --cc-bgcolor: #030f1a; 
    --cc-hicolor:#8fb5cc;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Urbanist';
}

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f6fbff;
    color: white;
    z-index: 2;
    transition: 0.8s;
}

.showcase.active {
    right: 150px;
}

.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;
    width: auto;
    height: 40px;
    width: auto;
    cursor: pointer;
    align-items: center;
}

.toggle {
    position: relative;
    width: 20px;
    height: 20px;
    background: url('menu.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    cursor: pointer;
    transition: background-color 1s ease 0s;
    transition: .5s;
}

.toggle:hover{
    outline: 4px solid var(--cc-hicolor);
    
}

.toggle.active {
    background: url('close.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;


}

.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu ul {
    position: relative;
    list-style: none;
}

.menu ul li a {
    text-decoration: none;
    font-size: 20px;
    color: #111;
}

.menu ul li a:hover {
    color: var(--cc-hicolor);
}