@font-face { font-family: 'pt_sans';
    src: url('fonts/pt_sans/PTSans-Regular.ttf') format('truetype'); 
}

*{
    box-sizing: border-box;
}

a{
    color: inherit;
    text-decoration: none;
    word-break: break-all;
}

html{
    height: 100%;
}

body{
    font-family: 'pt_sans';
    color: #565656;
    font-size: 40px;
    line-height: 1.3em;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-top: 16px solid #8db2cd; 
}

img{
    display: block;
    max-width: 100%;
}

a#logo{
    display: block;
    margin: 2rem auto;
    padding: 16px;
    max-width: 1000px;
}

main{
    padding: 0 16px;
}

main.flex{
    display: flex;
    justify-content: center;
}

address{
    font-style: normal;
}

footer{
    margin-top: auto;
    background-color: #8db2cd;
    padding: 10px;
    font-size: 20px;
    line-height: 1.3em;
    display: flex;
    gap: 20px;
    justify-content: center;
    color: #fff;
}

footer a{
    color: inherit;
    text-decoration: none;
}


.name{
    color: #91b1ca;
}

.upper{
    text-transform: uppercase;
}

.normal-text{
    font-size: 20px !important;
    line-height: 1.3em;
}

@media screen and (max-width: 600px){
    body{
        font-size: 30px;
    }
}

@media screen and (max-width: 400px){
    body{
        font-size: 26px;
    }
}