@import url('https://fonts.cdnfonts.com/css/bankgothic-md-bt');
body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1f1c1c;
    font-family: 'BankGothic Md BT';
    color: #eee;
    margin: 0;
    padding: 0;
    height: 100vh;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 15vh;
}
.brand{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-width: 200px;
}
.contact{
    display: flex;
    font-size: 1em;
    justify-content: space-between;
}
.coppyright{
    color : #eee;
    font-size: 1em;
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-family: 'BankGothic Md BT';
}
@media(max-height: 500px){
    body{
        align-items: start;
    }
    .container{
        margin-top: 10%;
    }
}
@media(min-width: 300px){
    .brand{
        font-size: 2em;
        width: 292px;
    }
    .contact{
        align-items: center;
        flex-direction: column;
    }
}
@media(min-width: 400px){
    .brand{
        font-size: 3em;
        width: 392px;
    }
    .contact{
        align-items: center;
        flex-direction: column;
    }
}
@media(min-width: 500px){
    .brand{
        font-size: 4.1em;
        width: 492px;
    }
    .contact{
        flex-direction: row;
        width: 440px;
    }
}
@media(min-width: 640px){
    .brand{
        font-size: 5.4em;
        width: 632px;
    }
    .contact{
        width: 580px;
        font-size: 1.2em;
    }
}
@media(min-width: 920px){
    .brand{
        font-size: 8em;
        width: 912px;
    }
    .contact{
        width: 890px;
        font-size: 1.8em;
    }
}
@media(min-width: 1280px){
    .brand{
        font-size: 11em;
        width: 1272px;
    }
    .contact{
        width: 1200px;
        font-size: 2.6em
    }
}
@media(min-width: 1600px){
    .brand{
        font-size: 13.8em;
        width: 1592px;
    }
    .contact{
        width: 1520px;
        font-size: 3.3em
    }
}
@media(min-width: 1920px){
    .brand{
        font-size: 16.4em;
        width: 1912px;
    }
    .contact{
        width: 1800px;
        font-size: 4em;
    }
}
@media(min-width: 2560px){
    .brand{
        font-size: 22em;
        width: 2552px;
    }
    .contact{
        width: 2350px;
        font-size: 5em
    }
}
@media(min-width: 3840px){
    .brand{
        font-size: 33em;
        width: 3832px;
    }
    .contact{
        width: 3600px;
        font-size: 8em;
    }
}