* {
    padding: 0px;
    margin: 0px;
}

img {
    width: 100%;
    height: 100%;
    display: block;
}

body {
    background-color: #FF7301;
}

section {
    width: 70%;
    margin: auto;

}


.btn {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 400px;
}

.btn a {
    text-decoration: none;
    color: black;
    background-color: rgb(255, 255, 255);
    border: 2px solid black;
    padding: 50px 100px;
    border-radius: 10px;
    box-shadow: 5px 5px 0px orange;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 800;
}

.btn a:hover {
    text-decoration: none;
    color: black;
    background-color: white;
    border: 2px solid black;
    border-radius: 10px;
    transition: all 0.5s ease;
    transform: scale(1.02);
    box-shadow: 15px 15px 0px orange;
}

@media screen and (max-width: 600px) {
    section {
        width: 100%;
    }

    .btn {
        height: 200px;
    }

    .btn a {
        font-size: 20px;
        padding: 30px 20px;
    }
}