@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap');

::-webkit-scrollbar {
    display: none;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    margin-bottom: 30px;
}

header h1 {
    color: black;
    padding-left: 45px;
    text-decoration: none;
}

header ul {
    display: flex;
}

header ul li {
    margin: 8px;
    list-style: none;
    padding: 8px;
}

header ul li a {
    color: #3580DC;
    font-size: 1rem;
    text-decoration: none;
}

header ul li a:hover {
    text-decoration: underline;
}

/* Main */

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 40vw;
}

.main-text {
    max-width: 40vw;
    margin: 2rem;
}

.main-text article p {
    color: rgba(0,0,0, 70%);
    text-align: justify;
}


.container2 {
    background: rgb(9,28,144);
    background: linear-gradient(0deg, rgba(9,28,144,1) 0%, rgba(21,73,167,1) 52%);
    margin-top: 1rem;
    width: 100%;
    height: 19vh;
    padding: 0.6rem;
}

.more-text {
    display: flex;
    justify-content: center;
    text-align: center;
}

.more-text h1 {
    margin: 0 0 1rem;
    font-weight: 400;
    font-size: 1.3rem;
    color:white;
}

.more-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.more-buttons button {
    border-radius: 5px;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    height: 5vh;
    width: 20vw;
    background-color: #ffffff;
    border: 1px solid rgba(22, 76, 167, 0.6);
    margin: 10px;
    font-size: 0.7rem;
}

.more-buttons button a{
    text-decoration: none;
    color: black;
}

/* Footer */

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 0;
    margin: 1rem;
}

footer h1 {
    font-weight: 400;
    font-size: 0.6rem;
    color: rgba(0,0,0, 70%);
}

@media only screen and (max-width: 600px) {
    html {
      font-size: 12px;
    }
}

.tdah-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.tdah-buttons button {
    width: 3vw;
    margin-right: 10px;
}