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

:root {
    --font-family: 'Montserrat', sans-serif;

    --text-color: #FFFFFF;
}

html, body {
    height: 100%;
}

.hidden {
    display: none;
}


body {
    font-family: var(--font-family);
    background: rgb(42,50,65);
    background: -moz-linear-gradient(180deg, rgba(42,50,65,1) 0%, rgba(83,95,114,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(42,50,65,1) 0%, rgba(83,95,114,1) 100%);
    background: linear-gradient(180deg, rgba(42,50,65,1) 0%, rgba(83,95,114,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a3241",endColorstr="#535f72",GradientType=1);
    color: var(--text-color);
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    padding: 12vh 8vw;
    height: 100vh;
    width: 100%;
    gap: 2rem;
}

.maintenance {
    background-image: url('/images/maintenance-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 2rem;
}

.icon {
    width: 104px;
    height: 104px;
}

.title {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.2;
}

.camera-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.camera {
    width: 340px;
    height: 575px;
    object-fit: cover;
    object-position: center;
}

.instructions {
    font-size: 2rem;
}