@charset "UTF-8";

/*
Theme Name: Wedel
Theme URI:
Author: KENNY
Author URI: https://kenny.pl/
Description:
Version: 1.0
Tags: kenny
*/

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

:root {
    --color-blue: #1A3987;
    --color-white: #FFFFFF;
}

*,
::before,
::after {
	box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

.main {
    background-color: var(--color-blue);
    width: 1920px;
    height: 1200px;
    overflow: hidden;
}

.header {
    height: 289px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: calc(1200px - 289px);
}

.poll_item {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    
    &:nth-child(1) {
        background-image: url(./assets/img/img1.jpg);
    }
    &:nth-child(2) {
        background-image: url(./assets/img/img2.jpg);
    }
    &:nth-child(3) {
        background-image: url(./assets/img/img3.jpg);
    }
    &:nth-child(4) {
        background-image: url(./assets/img/img4.jpg);
    }
    &:nth-child(5) {
        background-image: url(./assets/img/img5.jpg);
    }
}

.poll_copy {
    color: var(--color-white);
    font-weight: 800;
    font-size: 32px;
    width: calc(100% - 4rem);
    background-color: var(--color-blue);
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}