*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #f1f1f1;
}
.container{

    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 30vh;

}
.heading{
    height: 20vh;
    margin-top: 40px;

}
.buttons{
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}
.btn{
    width: 10vw;
    height: 5vh;
    border: 2px solid #333;
    border-radius: 5px;
}
.btn:hover{
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.56) 10px 20px 70px 10px;
}
#btn-1{
    background-color: #060606;
    color: #efe5e5;
}
#btn-3{
    background-color: #232b2b;
    color: #efe5e5;
}
#btn-4{
    background-image: linear-gradient(120deg, #de54a4 0%, #794cc2 50%, #632cba 100%);
    color: #efe5e5;

}
.footer{
    display: flex;
    justify-content: center;
    align-items: end;
    height: 50vh;
}

@media screen and (max-width:480px) {
    .btn{
        width: 25vw;
    }
    
}