*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F7A800;
    font-family: 'roboto', sans-serif;
}
.container{
    width: 600px;
    height: 550px;
    margin: auto;
    overflow: hidden;
    background: black;
    margin-top: 30px;
}
.container h1{
    color: white;
    display: flex;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: -15px;
}
.container a{
    float:left;
    list-style: none;
    width:200px;
    height:200px;
    background: #f71000;
    margin :48px 0px -20px 65px; 
    box-sizing: border-box;
    border: 1px solid white;
    border-radius: 5px;
    font-weight: bold;
    font-family: 'Mukta', sans-serif;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color:rgba(255, 255, 255, 0.733);
    font-size: 30px;
    text-decoration: none;  
}
.container a:hover{
    color: black;
    background: #F7A800;
    text-decoration: underline;
    cursor: pointer;
}
@media screen and (max-width:1250px){
    .container a{
        width:40%;
        margin-left: 40px;
     }}
@media(max-width:500px){
    .container{
        width:350px;
        height: 550px;
    }
    .container a{
        margin-top: 55px;
        margin-left: 26px;
        width:135px;
        height: 180px;
    }
}    
