* {
    --dark-color: #433D3E;
    --light-color: #FCFEFF;
    --primary-color: #1499B5;
}


body {
    overflow: hidden;
    padding: 0;
    margin: 0;
}

main {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    background-color: var(--primary-color);
    padding: 0;
    margin: 0;
}

#logo {
    height: 200px;
    width: 200px;
    display: flex;
    align-self: center;
    transition: 0.1s ease-in;
}

#logo svg {
    height: auto;
    width: 100%;
}

#loader-container{
    height: 4px;
    width: 200px;
    background-color: #1288A1;
    display: flex;
    align-self: center;
    border-radius: 2px;
    overflow: hidden;
    transition: 0.15s ease-in;
    animation: expandLoader 1s ease-in-out 4.5s forwards;
}

#loader-container.hidden{
    height: 0px;
}

#loader-container.expand{
    height: 100vh;
}

@keyframes expandLoader {
    10%{
        height: 4px;
        width: calc(100vw - 60px);
    }
    40%{
        height: 4px;
        width: calc(100vw - 60px);
    }
    50%{
        height: calc(100vh - 60px);
        width: calc(100vw - 60px);
    }
    85%{
        height: calc(100vh - 60px);
        width: calc(100vw - 60px);
    }
    100%{
        height: 100vh;
        width: 100vw;
    }
}

#loader-bar{
    height: 100%;
    width: 100%;
    background-color: var(--light-color);
    transition: 2.5s ease-in-out;
    transition-delay: 0.1s;
}

#loader-container.hidden #loader-bar{
    width: 0px;
}

path{
    animation: drawpath 0.75s ease-in forwards;
}


@keyframes drawpath {
    to {
      stroke-dashoffset: 0;
    }
  }