body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(0deg, rgba(76, 145, 143, 1) 0%, rgba(126, 195, 193, 1) 50%, rgb(93, 143, 142) 100%);
    direction: rtl;
    font-family: Arial, Helvetica, sans-serif;
}

body>div:first-of-type {
    font-size: 34px;
    border: 7px outset rgb(0, 0, 0);
    color: #032b2a;
    padding: 10px;
    font-weight: bold;
    margin: 10px 0;
    max-width: calc(100% - 50px);
    width: max-content;
    text-align: center;
}

nav:nth-of-type(1) {
    border-width: 1px;
    border-style: solid;
    border-color: gray black black gray;
    max-width: calc(100% - 20px);
    width: 632px;
    margin: 10px 0;
}

nav:nth-of-type(1)>a {
    display: block;
    padding: 3px 6px;
    border-width: 1px;
    border-style: solid;
    border-color: black gray gray black;
    margin: 3px;
    font-size: 24px;
    text-align: center;
    color: #032b2a;
}

nav:nth-of-type(2)>a {
    box-shadow: 0 0 12px 4px rgb(56, 56, 56);
    padding: 6px;
    border: 3px rgb(92, 202, 219) solid;
    background-color: rgb(29, 108, 110);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    min-width: 400px;
    font-size: 28px;
    letter-spacing: 1px;
    text-align: center;
    color: rgb(195, 220, 230);
    text-decoration: none;
}

nav:nth-of-type(2)>a:not(:last-child) {
    margin-bottom: 7px;
}

a:visited {
    color: rgb(75, 75, 1);
}