*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

body{
     background-image: url(background\ 3.png);
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height:100vh;
    display:flex;
    flex-direction:column;
}

/* Right Side */
.container{
    align-items:center;
    padding-right:120px;
    margin-left: 200px;
    margin-top: 20px;
}

.content{
    width:320px;
    text-align:center;
}

/* Heading */

h1{
    color:#ffffff;
    font-size:55px;
    margin-bottom:35px;
    text-shadow:4px 4px 12px rgba(0,0,0,.6);
    width: 400px;
}

/* Common Button */

.btn{
    width:60%;
    padding:22px;
    margin:18px 0;
    font-size:20px;
    font-weight:bold;
    border:none;
    border-radius:50px;
    cursor:pointer;
    transition:.4s;
}

/* Button 1 */

.btn1{
    background:#f43500;
    color:#fff;
    box-shadow:0 12px 20px rgba(244,180,0,.5);
}

.btn1:hover{
    background:#ff9800;
    transform:translateY(-6px);
}

/* Button 2 */

.btn2{
     background:linear-gradient(45deg, rgb(224, 41, 123), rgb(170, 23, 170), pink);
    color:white;
    box-shadow:0 12px 20px rgba(0,131,176,.5);
}

.btn2:hover{
     background:linear-gradient(45deg,rgb(203, 29, 69), rgb(249, 19, 107), pink);
      transform:scale(1.08);
}

/* Button 3 */

.btn3{
    background:#ffffff;
    color:#2e7d32;
    box-shadow:15px 15px 0px #222;
}

.btn3:hover{
    box-shadow:0 0 25px #000;
    transform:translate(-5px,-5px);
      color:#ffffff;
    background:#2e7d32;
    transform:translate(-5px,-5px);
}

/* Button 4 */

.btn4{
    background:transparent;
    color:white;
    border:3px solid white;
    box-shadow:0 0 20px rgba(255,255,255,.5);
}

.btn4:hover{
    background:linear-gradient(to right, rgb(203, 224, 231), rgb(239, 153, 167));
    color: rgb(70, 67, 67);
     transform:scale(1.05);
}

/* Footer */

footer{
    text-align:center;
    padding:18px;
    background:rgba(0,0,0,.45);
    color:white;
    font-size:18px;
    letter-spacing:1px;
    margin-top: 20px;
}
