@import "base.css";
@import "variables.css";

body{
    background: url('../Images/background-landing.png');
    background-size: cover;
    min-height: 100vh;
}

nav{
    width: 100%;
    background: transparent;
    position: absolute!important;
    z-index: 2;
    font-weight: 700;
}

#intro-section{
    display: table;
    position: relative;
    background: url("../Images/background-image.png") no-repeat center center;
    background-size: cover;
    background-position: center top;
    height: 100vh;
    width: 100%;
    color: #fff;
    padding-top: 68px;
}

#intro-section .container{
    position: relative;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    z-index: 1;
    width: 100%;
}

#intro-section .container h1{
    font-size: 4rem;
}

#intro-section .container p{
    font-size: 1.3rem;
    font-weight: 300;
}

/* 
.container {
    display: flex;
    flex-direction: column;
    color: white;
}

.display-4{
    margin-top: 10%;
}

.carousel{
    width: 100%;
    max-width: 650px;
}

a{
    max-width: 300px;
}*/

.cookie-container {
    position: fixed;
    bottom: -100%;
    width: 100%;
    max-width: 600px;
    left: 0;
    right: 0;
    background: #2f3640;
    color: #f5f6fa;
    padding: 0 32px;
    box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
    transition: 400ms;
}

.cookie-container.active {
    bottom: 0;
}

.cookie-container a {
    color: #f5f6fa;
}

.cookie-btn {
    background: #e84118;
    border: 0;
    color: #f5f6fa;
    padding: 12px 48px;
    font-size: 18px;
    margin-bottom: 16px;
    border-radius: 8px;
    cursor: pointer;
}