@font-face {
    font-family: 'Lexend Edt';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('../fonts/Lexend-Regular-edt.woff2') format('woff2'), 
         url('../fonts/Lexend-Regular-edt.woff') format('woff'); 
    font-display: block;
}

@font-face {
    font-family: 'nunito_heavyregular';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/nunitoheavy-regular-typingme.woff2') format('woff2'),
         url('../fonts/nunitoheavy-regular-typingme.woff2') format('woff');
    font-display: block;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 100%;
}

body {
    font: 13px/1.5 'Lexend Edt', 'Segoe UI', Roboto, 'Microsoft Sans Serif', Helvetica, Arial, sans-serif;
    background: #fff;
    color: #444;  
}

.content{
    padding-bottom: 45px;
}

footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: center;
    background: #444;
}

footer pre{
    color: white;
    font-size: 12px;
}

a {
    text-decoration: none;
    color: #444;
}

/* Header */
.header {
    height: 80px;
    background: #f38630;
    background: linear-gradient(to bottom, #f38630, #fa6900);
    margin-top: 5px;
}

.head-container{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 300px 1fr;
}

.typingme {
    padding-top: 5px;
    padding-left: 5px;
}

.logo {
    font-family: 'nunito_heavyregular', Verdana, sans-serif;
    font-size: 35px;
    color: #000;
}

#slogan {
    position: relative;
    bottom: 8px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding-left: 1px;
    font-size: 13px;
    color: whitesmoke;
}

/* Content */
.content{
    max-width: 1210px;
    margin: auto;
    display: grid;
    grid-template-columns: 3fr 10fr 3fr;
    grid-gap: 10px;
    margin-top: 20px;
}

.countries {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8px;
}

.country {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.country a img{
    width: 40px;
    height: 40px;
}

.country a.lang {
    margin-left: 5px;
}

.country:hover {
    transform: scale(0.98);
    transition: 0.2s;
}

.country:hover > a.lang{
    color: gray;  
}

.center {
    border: 1px solid #d3d3d3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.center h1{
    margin-top: 20px;
    color: #1e7b1e;
    font-size: 25px;
    margin-bottom: 20px
}


.center .listing {
    font-size: 20px;
    list-style-type: none;
    padding-left: 40px;
}

.center .listing-ul {
    margin-bottom: 20px;
}

li {
    background-image: url(../0-images/green_tick.jpg);
    background-repeat: no-repeat;
    margin-bottom: 10px; 
}

.center p {
    font-size: 20px;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 15px;
}

.q{
    font-family:  Verdana, Arial, Helvetica, sans-serif;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 64px;
    color: white;
    border: 1px solid #d3d3d3;
    background: #32cd32;
    background: linear-gradient(to bottom, #32cd32, #1e7b1e);


}

.q:hover {
    background: #1e7b1e;
    background: linear-gradient(to bottom, #1e7b1e, #32cd32);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transform: scale(0.98);
    transition: 0.2s;
}

@media (max-width: 992px) {
    .content {
        grid-template-columns: 3fr 10fr 1fr;
    }

    .center h1{
        font-size: 22px;
    }
    .center p{
        font-size: 18px;
    }

    .q{
        width: 240px;
        height: 64px;
        font-size: 22px;
    }
}

@media (max-width: 700px) {
    .logo{
        font-size: 30px;
    }
    .content {
        grid-template-columns: 1fr; 
    }

    .countries {
        flex-direction: row;
        gap: 20px;
    }

    .center{
        margin: 8px;
    }

    .center h1{
        font-size: 20px;
    }
    .center p{
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .content {
        padding-bottom: 60px;
    }
    footer {
        font-size: 12px;
        gap: 10px;
        flex-direction: column;
        height: 60px;
    }
}

