*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'chalkduster';
    src: url('../Chalkduster.ttf');
}

:root {
     /* background */
    --primary-bg-color: #000;
    --secondary-bg-color: #fff;
    
    /* color */
    --primary-color:#fff;
    --secondary-color:#000;

    /* font */
    --font-header:'chalkduster', 'Arial', 'Helvetica';
    --font-primary:"Roboto", sans-serif;

    /* button */
    --btn-primary-bg: rgb(0, 97, 0);
}

body {
    width:100%;
    height:100%;

    background-color:var(--primary-bg-color);

    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    

}

#wrapper {
    height:100%;
    width:100%;

    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap:1rem;
}

section {
    width:100%;

}

#rating-title {
    margin-top:1.5rem; 

    font-family: var(--font-header);
    font-size:32pt;

    text-align:center;

    color:var(--primary-color);

}
#rating-container{
    border-top:2px solid red;
    padding-top:1.25rem; 

    display:flex;
    align-items: start;
    justify-content: center;
    gap:.75rem; 

    /* border:2px solid red; */
}

#rating-container > img:hover {
cursor:pointer;

transform:scale(.97);
}


#rating-container > img {
    height:100px;
}

/* footer */


#contact {
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;

    width:100%;

    /* border-top:2px solid #f00; */

}

footer > p {
    text-align: left;
    margin-top:1.5rem;

    font-size:9pt;
}
#logo-title-footer{
    display:flex;
    gap:8px;

    color: var(--primary-color);

    font-size:12pt;

    justify-content: center;
}

.header-font {
  font-family: var(--font-header);
}
.roboto-font {
  font-family: var(--font-primary);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

#mailto {
    color:var(--primary-color);
    border:2px solid red;
    
    margin-top:.5rem;

    padding:4px;
}

/* rating */
#poll-container{
    width:100%;
    height:100%;

    flex-wrap: wrap;
    display:flex;
    align-items: center;
    justify-content: center;

    gap:.5rem;

    border-top:2px solid red;
    padding:5px;
}
ul > li {
    list-style: none !important;
}
#poll-question{
    text-align: center;
    color:var(--primary-color);

    font-size:18pt;
    
}
.poll-item {
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    
    border-radius: 12px;

    color:var(--primary-color);
    min-width:100px;
    min-height:45px;
    padding:8px;
    

    border:1px solid var(--primary-color);
    text-align: center;
    
}

.poll-item:hover,.poll-active {
    cursor:pointer;
    background-color: var(--secondary-bg-color);
    color:var(--secondary-color)
}


#textarea-feedback{
    width:100% !important;
    resize:none;

    border-top:2px solid red;

}

#form-submit {
    color:var(--secondary-color);
    padding:8px;

    font-size:14pt;

    background-color: var(--secondary-bg-color);

    border:2px solid #000;

}


#form-submit:hover {
    cursor:pointer;
    background-color: var(--primary-bg-color);
    color:var(--primary-color);
    border:2px solid #fff;
}