@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

body {
    direction: rtl;
    background-color: #c6aa83;
}

* {
    font-family: "Arimo", sans-serif !important;
}

h1 {
    text-align: center;
    color: white;
    margin: 16px;
    font-size: 5em;
}

.frame {
    width: 98%;
    max-width: 1000px;
    min-height: 300px;
    background-color: #ffffffa1;
    margin: auto;
    padding: 8px 16px;
    border-radius: 6px;
    text-align: center;
    box-sizing: border-box;
}

header {
    text-align: center;
}

h2 {
    font-size: 2em;
    font-weight: 300;
    text-align: center;
}

h2 span {
    white-space: nowrap;
}

.images {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
}

.images>div {
    width: 200px;
}

.images label {
    margin: 6px;
    font-size: 1.3em;
    display: block;
    text-align: center;
    background-color: #a18257;
    color: white;
    border-radius: 4px;
    padding: 3px;
    position: relative;
    top: -6px;
}

.images img {
    width: 100%;
}

article {
    text-align: center;
    font-size: 1.6em;
}

footer {
    text-align: center;
}

footer img {
    height: 110px;
    margin-top: 30px;
}

a {
    background-color: #a18257;
    border: 0;
    border-radius: 30px;
    padding: 9px 18px;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 16px;
    transition: 0.3s;
    text-decoration: none;
}

a:hover {
    scale: 1.3;
    text-decoration: underline;
}

@media (max-width: 668px) {
    h1 {
        font-size: 3em;
    }

    .images>div {
        width: 150px;
    }

    .images label {
        font-size: 0.9em;
    }
}