@font-face {
    font-family: 'copperplate';
    src: url('copperplate-webfont.woff2') format('woff2'),
         url('copperplate-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html {
    width: 100%;
    height: 100%;
  }
  
body {
    overflow: hidden;
    position: relative;
    background-color: rgb(252, 252, 252);
    margin: 0 0 0 0;
}

.text {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family:'copperplate';
    letter-spacing: 1px;
    line-height: 60px;
    font-size: 19px;
    text-align: center;
}

.text-header {
    width: 150px;
}

.text-address {
    width: 350px;
}

a:link {
    text-decoration:none;
    color:#000;
}

a:visited {
    text-decoration:none;
    color:#000;
}

a:active {
    text-decoration:none;
    color:#000;
}

a:hover {
    text-decoration:none;
    color:#000;
}

p {
    line-height: 1.1;
  }


@media screen and (max-width: 500px){

    .text-header {
        width: 112.5px;
    }
    
    .text-address {
        width: 262.5px;
    }

    .text {
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-family:'copperplate';
        letter-spacing: 1px;
        line-height: 60px;
        font-size: 15px;
        text-align: center;
    }

}