:root {
    --height: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(calc(-100vh));
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(calc(100vh));
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(calc(-100vw));
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(calc(100vw));
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes hideItem {
    0% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}

.alert {
    animation: 5s ease-out 0s 1 forwards hideItem;
}

.animin_top {
    animation: 0.5s ease-out 0s 1 slideInFromTop;
}

.animin_left {
    animation: 0.5s ease-out 0s 1 slideInFromLeft;
}

.animin_right {
    animation: 0.5s ease-out 0s 1 slideInFromRight;
}

.animin_bottom {
    animation: 0.5s ease-out 0s 1 slideInFromBottom;
}

.noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noSelect:focus {
    outline: none !important;
}

.material-symbols-outlined {
     font-variation-settings:
             'FILL' 0,
             'wght' 800,
             'GRAD' 0,
             'opsz' 48
}

body {
    margin: 0;
    /*overflow: hidden;*/
    font-family: "Montserrat", sans-serif;
}

img {
    width: 100%;
    height: auto;
}

img.logo {
    width: 25%;
    height: auto;
    display: block;
    margin: 0 auto;
}

img.laptop {
    width: 40%;
    height: auto;
    display: block;
    margin: 0 auto;
}

main::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--height);
    opacity: 0.3;
    background-image: url("../images/code_back_40p.png");
    background-repeat: no-repeat;
    background-size: cover;
}

main {
    display: flex;
    height: 100vh;
    justify-content: center;
}

.center_container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.title {
    display: flex;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 8.5vw;
    text-transform: uppercase;
}

.subtitle {
    margin: 1%;
}

.title-word {
    animation: color-animation 4s linear infinite;
}

.title-word-1 {
    --color-1: #DF8453;
    --color-2: #3D8DAE;
    --color-3: #E4A9A8;
}

.title-word-2 {
    --color-1: #DBAD4A;
    --color-2: #ACCFCB;
    --color-3: #17494D;
}

.title-word-3 {
    --color-1 : #bf9000;
    --color-2:  #df3453;
    --color-3:  #a5879e;
}

.title-word-4 {
    --color-1 : #153327;
    --color-2:  #008080;
    --color-3:  #8000ff;
}

.title-word-5 {
    --color-1 : #ff00ff;
    --color-2:  #7494bf;
    --color-3:  #ff0040;
}


@keyframes color-animation {
    0%    {color: var(--color-1)}
    32%   {color: var(--color-1)}
    33%   {color: var(--color-2)}
    65%   {color: var(--color-2)}
    66%   {color: var(--color-3)}
    99%   {color: var(--color-3)}
    100%  {color: var(--color-1)}
}


.box_menu {
    display:  flex;
    flex-direction: row;

}

.box {
    border : 0px solid #000;
    width: 100px;
    height: 100px;
    margin: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box > div {
    text-align: center;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.box:hover > div {
    opacity: 1;
}


.box span:hover {
    cursor: pointer;
}

.material-symbols-outlined {
    font-size: 5em;
}

.material-symbols-outlined.smaller {
    font-size: 2.5em;
}

@media screen and (max-width: 480px) {
   /* img {
        width: 50%;
        height: auto;
        display: block;
        margin: 0 auto;
    }*/

    .box_menu {
        flex-direction: column;
    }
}

form {
    /* This section calls the slideInFromLeft animation we defined above */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color:#cccccc;
    border-radius: 10px;
    box-shadow: black 0px 0px 10px 0px;
    padding: 10px;
    margin-left: 5%;
    margin-right: 5%;
}

label {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 0.8em;
    text-transform: uppercase;
    text-align: center;
}

input[type=text], input[type=email], textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "Courier New", Courier, monospace;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #17494D;
    box-shadow: 0 0 10px #17494D;
    font-family: "Courier New", Courier, monospace;
}

input[type=number] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "Courier New", Courier, monospace;
}

input[type=submit] {
    width: 100%;
    background-color: #17494D;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


.center_container > h1 {
    text-align: center;
}

.programma_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px 10px;
    max-width: 800px;
    font-size: 0.8em;
}



.event-item {
    background-color: #f2f2f2;
    border-radius: 5px;
    border: 1px solid grey;
    box-shadow: 0 0 10px grey;
    margin: 10px 20px;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.adres {
    font-size: 0.7em;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: -100px 10px
}

.clip_route {
    position:relative;
    width: 100%;
    clip-path: circle(30%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-size: 0.8em;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.clip_route > iframe {
    border: 1px solid black;
    height: 600px;
}
.program_subtitle {
    font-weight: lighter;
    font-size: 0.8em;
}

/* The Modal (background) */
.modal {
    display: flex; /* Hidden by default */
    justify-content: center;
    align-items: center;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal div {
    user-select: none; /* Standard syntax */
    border: 5px solid;
    border-color: gold #3D8DAE #3D8DAE gold ;
    padding: 5px;
}




