*, *::before, *::after {
    box-sizing: border-box;
}
* {
    padding: 0;
    margin: 0;
    font: inherit;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
ul[role="list"] {
    list-style: none;
}
body {
    font-family: Roboto, Arial, sans-serif;
}

/* Typography */
h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 300;
    color: #61A3E6;
}
h2 {
    font-size: 1.375rem;
    line-height: 2;
    font-weight: 700;
    color: #121F2C;
}
h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
p {
    font-size: 1.125rem;
    font-weight: 300;
    color: #fff;
}
a {
    text-decoration: none;
}

/* Button Styles */
.button {
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #F45522;
    border: 1px solid #F45522;
    border-radius: 0.5rem;
    transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.button:hover {
    opacity: 0.8;
}

/* Header */
.main-header {
    padding: 1.5rem;
}
.main-header img {
    margin: 0 auto;
}

/* Hero */
.hero {
    position: relative;
    background-color: #121F2C;
    overflow: hidden;
    z-index: 1;
}
.hero div {
    padding: 1.5rem 2rem;
}
.hero h1 {
    max-width: 50.75rem;
    margin-bottom: 1rem;
}
.hero img {
    margin-left: auto;
}

/* Main Content */
.content {
    padding: 2rem;
}
.content__header {
    text-align: center;
    margin-bottom: 2.75rem;
}

/* Main Content - Link grid */
.country-grid {
    display: grid;
        gap: 2rem 1rem;
}
.country-grid__item {
    background-color: #121F2C;    
}
.country-grid__item a {
    display: grid;
        align-content: space-between;
    height: 100%;
}
.country-grid__item div {
    margin: 2.5rem 3.125rem 0;
}
.country-grid__item h3 {
    text-align: center;
    margin-bottom: 1rem;
}
.country-grid__item .button {
    display: none;
}
.country-grid__item img {
    margin-left: auto;
}

/* Media Queries */
@media screen and (min-width: 768px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
}
@media screen and (min-width: 1280px) {
    h1 {
        font-size: 3.125rem;
        line-height: 1.3125;
        font-weight: 300;
        color: #61A3E6;
    }
    h2 {
        font-size: 1.875rem;
        line-height: 2;
        font-weight: 700;
        color: #121F2C;
    }
    h3 {
        font-size: 1.375rem;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
    }
    p {
        font-size: 2rem;
        line-height: 1.333;
        font-weight: 300;
        color: #fff;
    }
    .main-header {
        padding: 1.5rem 8.75rem;
    }
    .main-header img {
        margin: 0;
        height: 46.62px;
        width: 226.46px;
    }
    .hero {
        display: grid;
            grid-template-columns: 3fr 2fr;
    }
    .hero div {
        padding: 4rem 0 4rem 8.75rem;
    }
    .hero img {
        height: 125%;
        position: absolute;
            top: -25%;
            right: -2rem;
        z-index: -1;
    }
    .content {
        padding: 2rem 8.75rem;
    }
    .country-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 1rem;
    }
    .country-grid__item h3 {
        text-align: left;
    }
    .country-grid__item .button {
        display: inline-block;
    }
}