*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main_header{
    display: flex;
    flex-direction: row;
    height: 70px;
    width: 100%;
    background-color: rgb(59, 91, 117);
}
.main_header a{
    text-decoration: none;
    color: white;
    
}
.main_header p{
    margin-left: 20px;
    font-size: 20px;
}
.logo{
    width: 50%;
    height: 100%;
}
.logo img{
    width: 250px;
    height: 200px;
    margin-top: -57px;
    margin-left: 30px;
}
.links{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    margin-right: 15%;
    width: 50%;
    height: 100%;
    justify-content: right;
}

@media only screen and (max-width: 700px){
    .logo{
        display: none;
    }
    .main_header{
        display: flex;
        flex-direction: row;
        text-align: center;
        justify-content: center;
        height: 70px;
        width: 100%;
        background-color: rgb(59, 91, 117);
    }
    .links{
        margin-top: 20px;
        margin-right: 15%;
        width: 50%;
        height: 100%;
        
    }
}
@media only screen and (max-width: 400px){
    .logo{
        display: none;
    }
    .main_header{
        display: flex;
        flex-direction: row;
        text-align: center;
        justify-content: center;
        height: 50px;
        width: 100%;
        background-color: rgb(59, 91, 117);
    }
    .links{
    display: flex;
    flex-direction: row;
    margin: 0px !important;
    width: 100%;
    height: 100%;
    justify-content: center;
}
    .main_header p{
        margin: 20px !important;
        font-size: 18px;
    }
    
}