@import url('https://fonts.googleapis.com/css2?family=Almarai&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-image: url(santa-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #333;
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    text-align: left;
}

header {
    padding: 20px;
}

.logo {
    font-size: 26px;
    float: left;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 20px;
}

.flex-items-left {
    flex: 50%;

}

.flex-items-right {
    flex: 50%;
}

.tag {
    color: red;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cta {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.description {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

button {
    border-radius: 20px;
}

.cta-btn {
    background-color: #fff;
    color: red;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 20px;
    padding: 10px 20px;
    letter-spacing: 2px;
    border: 2px solid red;
}

.cta-btn:hover {
    background-color: red;
    color: #fff;
}

#results {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    position: absolute;
    bottom: 0%;
    right: 5%;
    margin-bottom: 20px;
    padding: 20px;
}

.rtitle {
    color: red;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.gift {
    font-size: 16px;
}

@media (max-width: 800px) {

    .flex-items-right,
    .flex-items-left {
        flex: 100%;
    }

    .cta-btn {
        width: 100%;
    }

    #results {
        position: relative;
        padding: 20px;
        margin: 0;
    }
}