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

:root {
    --color-red: #036564;
    --color-brown: #c23c19;
    --color-primary: #E8DDCB;
    --color-secondary: #eace9a;
    --color-cvbutton: #caa864;
    --color-ternary: #036564;
    --color-quaternary: #033649;
    --color-quinta: #031634;
    --color-white: #FFFFFF;
    --color-black: #000;
    --color-grey0: #f8f8f8;
    --color-grey-1: #dbe1e8;
    --color-grey-2: #b2becd;
    --color-grey-3: #6c7983;
    --color-grey-4: #454e56;
    --color-grey-5: #2a2e35;
    --color-grey-6: #12181b;
    --br-sm-2: 14px;
    --box-shadow-1: 0 3px 15px rgba(0, 0, 0, .3);
}

body {
    background-color: var(--color-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--color-black);
    transition: all .4s ease-in-out;
}

a {
    /* display: inline-block; */
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}

a b {
    color: var(--color-ternary);
}

a b:hover {
    color: var(--color-brown);
}

b {
    color: var(--color-ternary);
}

/* .titolo {
    color: var(--color-secondary);
    text-align: center;
    font-family: 'Poppins', sans-serif;

} */
i {
    font-family: 'Noto Sans Math', sans-serif;
}

ul {
    list-style-type: circle;
    color: var(--color-quaternary);
}

li {
    list-style: disc outside none;
    display: list-item;
    margin-left: 1em;
    /* font-size: 18px; */
}

li:hover {
    color: var(--color-brown);
}

.customIndent {
    margin-left: 20px;
}

#column1 h1 {
    color: var(--color-ternary)
}

#column1 h2 {
    color: var(--color-ternary)
}

#column1 h3 {
    color: var(--color-ternary)
}

.cookies-eu-banner {
    color: #121111;
    padding: 2px;
    font-size: 13px;
    text-align: center;
    position: fixed;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: auto;
    /* left: 40%; */
    width: 300px;
    z-index: 10;

}

.b {
    color: var(--color-quaternary)
}

.cookies-eu-banner .content {
    background-color: var(--color-secondary);
    padding: 1vw 1vw;
    border-radius: 20px;
    box-shadow: var(--box-shadow-1);
}

.cookies-eu-banner .content h1 {
    color: var(--color-quaternary);
    font-size: 20px;
}

.cookies-eu-banner .content p {
    color: black;
}

.cookies-eu-banner .btns {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

.cookies-eu-banner .btn {
    border: none;
    outline: none;
    padding: .8em 1.5em;
    width: 100px;
    margin-right: 1em;
    border-radius: 3px;
    text-transform: uppercase;
}

.cookies-eu-banner .btn.accept {
    background-color: var(--color-ternary);
    color: #fff;
    /* font-size: 16px; */
}

.cookies-eu-banner .btn.cancel {
    background-color: var(--color-grey-1);
    color: black;
    /* font-size: 16px; */
}

.footer {
    background-color: var(--color-cvbutton);
    color: var(--color-quaternary);
    padding: 5px;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    /* margin-top: 55%; */
}

.footer_options {
    margin: 0;
    padding: 0;
}

.footer_item {
    display: inline-block;
    padding-left: 20px;
    cursor: pointer;
}

.footer_item:hover {
    color: white;
    /* transform: translateY(-5px); */
}

.hidden {
    display: none;
}


.main-title {
    margin-top: 20px;
    text-align: center;
}

.main-title h2 {
    position: relative;
    /* text-transform: uppercase; */
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-cvbutton)
}

.main-title h2 span {
    color: var(--color-ternary);
}

.main-title h2 .bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--color-cv);
    transition: all 0.4s ease-in-out;
    z-index: -1;
    transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 6.3rem;
}

#log {
    text-align: center;
    color: var(--color-cvbutton);
    font-size: 100px;
}

.date h3 {
    position: relative;
    /* font-style: italic; */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    /* font-size: 2rem; */
    text-align: right;
    margin-top: 15px;
    margin-left: auto;
    margin-right: 0px;
    color: var(--color-ternary);
}

.lectureTime h3 {
    position: relative;
    /* font-style: italic; */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    /* font-size: 2rem; */
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: auto;
    color: var(--color-ternary);
}

.image {
    margin-top: 20px;
    text-align: center;
}

.image img {
    width: 800px;
    height: auto;
    border-radius: 35px;
    box-shadow: var(--box-shadow-1);
}

#column1 {
    /* text-align: left; */
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 50rem
}

#column1 p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: black;
}

@media screen and (max-width: 1000px) {
    #column1 {

        width: 30em
    }

    .image img {
        width: 600px;
    }

    .main-title #log {
        font-size: 75px;
    }

    .main-title #title {
        font-size: 60px;
    }
}

@media screen and (max-width: 650px) {
    #column1 {

        width: 20em
    }


    .image img {
        width: 500px;
    }

    .footer {
        background-color: var(--color-cvbutton);
        color: var(--color-quaternary);
        padding: 2px;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        /* margin-top: 55%; */
    }

    .footer_options {
        margin: 0;
        padding: 0;
    }

    .footer_item {
        display: inline-block;
        padding-left: 10px;
        font-size: 10px;
    }


    .main-title #log {
        font-size: 65px;
    }

    .main-title #title {
        font-size: 50px;
    }
}


@media screen and (max-width: 450px) {
    .image img {
        width: 300px;
    }

    #column1 {

        width: 16em
    }

    .main-title #log {
        font-size: 35px;
    }

    .main-title #title {
        font-size: 30px;
    }

    .footer_item {
        display: inline-block;
        padding-left: 10px;
        font-size: 9px;
    }

    .footer {
        background-color: var(--color-cvbutton);
        color: var(--color-quaternary);
        padding: 0px;
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        /* margin-top: 55%; */
    }

}