@font-face {
    font-family: 'LidlFont';
    src: url("../../assets/fonts/LidlFontPro-Regular.ttf");
    font-weight: normal;
    font-style: normal;

}

:root {
    --lidl-red: #E60A14;
    --lidl-blue: #0050AA;
    --lidl-yellow: #FFF000;
}


body {
    font-family: 'LidlFont';
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--lidl-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.welcome-text {
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--lidl-yellow)  ;
}
h1 {
    font-size: 75px !important;
}
h4 {
    font-size: 30px ;
}

.btn-primary{
    margin: auto;
    padding: 25px 0;
    font-size: 25px;
    width: 300px;
    background-color: var(--lidl-yellow);
    color: var(--lidl-red);
    border: 3px solid transparent;
    font-weight: bold;
    box-shadow: none;
}

/*.btn-primary:hover,*/
/*.btn-primary:active,*/
/*.btn-primary:focus{*/
/*    background-color: var(--lidl-yellow);*/
/*    color: var(--lidl-red);*/
/*    border: 3px solid transparent;*/
/*    font-weight: bold;*/
/*    box-shadow: none;*/

/*}*/

.bottom-container {
    position: absolute;
    padding: 25px 0;
    bottom: 0;
    left:50%;
    transform: translateX(-50%);
    text-align: center;
    width: 75%;
    color: white;
}