@font-face {
    font-family: 'Satoshi';
    src: url('fonts/satoshi/Satoshi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('fonts/satoshi/Satoshi-Bold.ttf') format('truetype');
    font-weight: bold;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing :border-box;
}

#entrance {
    min-width: 100vw;
    min-height: 100vh;
    background-image: url(img/bkg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#filter {
    width: 100%;
    height: 100%;
    background-color: darkblue;
    opacity: 0.09;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#content {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#logo {
    width: 400px;
    height: auto;
    margin-top: 35px;
}

#down-icon {
    width: 30px;
    height: auto;
    margin-top: 10px;
    cursor: pointer;
}

#info {
    background-color: #001333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 75%;
    margin-top: 60px;
    margin-bottom: 60px;
}

#map-icon {
    width: 45px;
    height: auto;
    margin-bottom: 40px;
}

.info-text, .contact-details {
    color: white;
    text-align: center;
    font-family: 'Satoshi', serif;
    font-size: 17px;
}

.info-text {
    margin-bottom: 20px;;
}

.contact-details, .contact-details:visited {
    margin-bottom: 4px;
    color: white;
    text-decoration: none;
}

@media only screen and (max-width: 430px) {
    #logo {
        width: 80vw;
    }
}