* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

main {
    width: 100%;
    height: 100%;
}

nav {
    display: flex;
    height: 100px;
    justify-content: flex-end;
    align-items: center;
    padding: 0px 30px;
    gap: 30px;
}

nav h4 {
    font-size: 20px;
    font-weight: 700;
    color: black;
}

nav i {
    font-size: 20px;
    color: white;
    background-color: black;
    padding: 10px;
    border-radius: 50%;
    font-weight: 700;
}

#banner {
    width: 100%;
    padding: 40px 80px 0px 80px;
}

#banner h1 {
    font-size: 80px;
    font-weight: 500;
    line-height: 80px;
}

.label {
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
}

.label p {
    font-size: 22px;
    font-weight: 400;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: black;
    line-height: 32px;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 20%;
}

.btn {
    text-decoration: none;
    color: black;
    font-size: 22px;
    font-weight: 400;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 32px;

}

.btn-container {
    border-top: 2px solid black;
    padding: 18px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-container i {
    font-size: 25px;
    color: black;
    opacity: 0;
}

.btn-container:hover i {
    opacity: 1;
}

.btn-container:hover {
    background-color: rgb(228, 228, 228);
}

.btn-container:hover a {
    text-decoration: underline;
}

#product-image {
    height: 100%;
    width: 100%;
    background-image: url(https://media.istockphoto.com/id/637540630/photo/handsome-tourist.jpg?s=612x612&w=0&k=20&c=3oF_kyCZz-31Ephy4DXZrdKxsev5mmWDTHxNRrac7qQ=);
    background-size: cover;
    background-position: 20% 80%;
}

