/* Fonts */
@font-face {
    font-family: 'Walker';
    src: url('../fonts/NatashaWalker-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'WalkerBold';
    src: url('../fonts/NatashaWalker-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: bold;
}

@font-face {
    font-family: 'Minion';
    src: url('../fonts/MinionPro-Regular.otf') format('opentype');
    font-style: normal;
    font-weight: 50;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Walker', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fafaed
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    height: 100vh;
}

.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 200px;
}

.divider {
   height:80px;
}

.entry {
    width: 100%;
    text-align: center;
}

.header {
    color: #005fa1;
}

.description {
    font-family: 'Minion', Arial, sans-serif;
    color: black;
    font-size: 16px;
    letter-spacing: 0.01rem;
}

.website {
    font-size: 16px;
}

.title {
    font-size: 48px;
    font-family: 'WalkerBold';
}

.sub-title {
    font-size: 30px;
    padding-top: 12px;
    letter-spacing: 0.1rem;
}

.info {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    color: #616161;
}


span {
    margin: 0px 10px 0px 10px;
}

a, a:visited, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}


/* Mobile responsive */
@media (max-width: 768px) {
    .info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1px;
        padding-top: 24px;
    }
    
    .info span {
        display: none;
    }

    p {
        margin: 0;
        padding: 2px;
    }
}


/* Small */
@media (max-width: 454px) {
    .title {
        font-size: 36px;
    }

    .sub-title {
        font-size: 24px;
    }

    .description {
        font-size: 12px;
    }
}

