@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
    --text: #0b0b14;
    --background: #f7f7f8;
    --primary: #8fb2ff;
    --secondary: #ebf1ff;
    --accent: #6767da;
}

** {
    color: var(--text);
}

body {
    background-color: var(--background);
    font-family: 'Quicksand', sans-serif;
    padding: 0;
    margin: 0;
}

.header {
    text-align: center;
    padding: 20px;
    background-size: cover;
}

.heading h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.desc {
    font-size: 18px;
    line-height: 1.6;
}

.highlight {
    color: var(--accent);
    font-weight: bold;
}



section {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
}



.first-section {
    background-color: var(--secondary);
}
.cameras {
    display: grid;
    grid-template-columns: 50% 50%;
}

.camera:nth-child(1) {
    transition-delay: 200ms;
}

.camera:nth-child(2) {
    transition-delay: 600ms;
}

.cameras h3 {
    font-size: x-large;
}


.second-section {
    background-color: var(--primary);
}

.hiddens {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-50%);
    transition: all 1s ease-in-out;
}


.show {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);
    transition: all 1s ease-in-out;
}

img {
    width: 60px;
    aspect-ratio: 1 /1;
}

