* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    color: #fff;
    font-family: 'Varela Round', sans-serif;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.7) 100%), url('../img/158453-Canada.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;

}

.content {
    width: 60%;
    max-height: 100vh;
    margin: 0px auto;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 60px;
}

h2 {
    font-weight: 300;
    font-size: 36px;
    line-height: 50px;
}

h2 strong {
    font-size: 38px;
}

.shop-white {
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
}

.action-btn {
    width: 420px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    justify-items: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.action-btn i {
    border: 2px solid #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-yellow {
    background-color: #940000;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    border: 2px solid #fff;
}


@media only screen and (max-width: 1440px) {
    .content {
        width: 80%;
    }
    h1 {
        font-size: 42px;
        margin-bottom: 30px;
    }
    
    h2 {
        font-size: 28px;
        line-height: 40px;
    }
    
    h2 strong {
        font-size: 30px;
    }

    .action-btn {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 960px) {
    .content {
        width: 90%;
        left: 50%;
        top: 30%;
        transform: translate(-50%, -30%);
    }
    
    h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    h2 {
        font-size: 22px;
        line-height: 30px;
    }
    
    h2 strong {
        font-size: 24px;
    }

    .action-btn {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 520px) {

    .action-btn {
        width: 100%;
    }

    h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    h2 {
        font-size: 22px;
        line-height: 30px;
    }
    
    h2 strong {
        font-size: 24px;
    }

    .action-btn {
        margin-top: 20px;
    }
}
