
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: grid;
    height: 100vh;
    width: 100vw;
    align-content: center;
    background-color:black;
}
header {
    display: grid;
    grid-template-rows: auto auto auto;
    align-items: center;
    height: 40vh;
}
header div {
    display: flex;
    height: 95px; 
    justify-content: center;
}
header div img {
    width: 95px;
    height: auto;
}
header h1,header p{
    display: flex;
    justify-content: center;
    font-family: 'Righteous', cursive;
    color: white;
    font-size: 14px;
} 
header p{
    font-size: 12px;
}

@media all and (min-width:361px )and (max-width:1366px){

    header h1,header p{
        font-size: 20px;
    } 
    header p{
        font-size: 18px;
    }
}
@media all and (min-width:1367px )and (max-width:1920px){

    header h1,header p{
        font-size: 26px;
    } 
    header p{
        font-size: 24px;
    }
}
@media all and (min-width:1921px){

    header h1,header p{
        font-size: 32px;
    } 
    header p{
        font-size: 30px;
    }
}

