*{
    padding: 0;
    margin: 0;
}
body{
    width: 100%;
    height: 100%;
    height: 100vh;
    background-color: white;
}

/*Opening animation*/
.animation-bg-div{
    background-color: white;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 3;
    animation-name: float-bg-out;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-delay: 2.1s;
    animation-fill-mode: forwards;
    text-align: center;
}
.animation-logo{
    width: 200px;
    animation-name: rotate-logo;
    animation-iteration-count: 1;
    animation-duration: 2s;
    animation-delay: 0.2s;
}
.opening-text{
    font-size: 50px;
}
@keyframes rotate-logo {
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
@keyframes float-bg-out {
    0%{left: 0;}
    100%{left: -120%}
}

/*Fonts*/
.raleway-medium {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.rubik-bold {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}
.rubik-semibold {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.rubik-medium {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.old-standard-tt-bold {
    font-family: "Old Standard TT", serif;
    font-weight: 600;
    font-style: normal;
}

/*Modal*/
.modal-dialog{
    width: 75%;
}
.modal-content{
    background-color: rgba(245, 245, 245, 0.3);
    backdrop-filter: blur(16px);
    border: #BCBCBC 2px solid;
    border-radius: 20px;
    box-shadow: inset -2px -2px 1px 0 rgba(211, 210, 210, 0.2);
}
.btn-tamogatas{
    border: #BCBCBC 1px solid;
    background-color: #8FE8FF;
}
.modal-footer, .modal-header{
    border: none;
}

/*navbar*/
.navbar-logo{
    width: 50px;
}
.navbar-logo-text{
    margin-left: 15px;
}
.navbar-div{
    font-size: 23px;
    padding: 3px;
    border: 1px solid #747474;
    border-radius: 15px;
    margin: 4px;
    height: fit-content;
    width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar-item{
    margin-left: 10px;
    margin-right: 10px;
    color: black;
}
.nav-link{
    color: black;
}
.navbar-style{
    box-shadow: inset 1px 1px 10px 1px black;
}
.navbar-bg{
    background-image: url(../img/image-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.blur-bg{
    backdrop-filter: blur(5px);
    height: 100%;
    width: 100%;
}
.navbar{
    padding: 0;
}

/*Main*/
.image{
    width: 100%;
    max-width: 213px;
}
.no-overflow{
    -moz-hyphens:auto;
    -ms-hyphens:auto;
    -webkit-hyphens:auto;
    hyphens:auto;
    word-wrap:break-word;
}

/*Footer*/
.main-footer{
    background-color: #cccccc;
    border-top: #747474 2px solid;
    padding: 20px;
}
.footer-a{
    color: black;
    text-decoration: none;
}
.footer-a:hover{
    color: #747474;
    text-decoration: none;
}
.footer-col{
    margin-bottom: 30px;
}