@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@600&family=Roboto:wght@100&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

nav {
    display: flex;
    justify-content: center;
    background: rgb(220, 231, 255);
    background: linear-gradient(120deg, rgba(220, 231, 255, 1) 0%, rgba(0, 82, 255, 1) 100%);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 50px;
    padding: 5px;
    color: white;
}

.abc {
    height: 80px;
    width: 80px;
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    color: rgba(0, 82, 255, .5);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.container {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.latest {
    font-size: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    border-bottom: 3px solid #FFE45C;
    color: rgba(0, 81, 255, 0.5);
    width: fit-content;
}

.news {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
}

.box {
    width: 31%;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 5px rgb(0, 0, 0, .2);
    cursor: pointer;
    transition: all .3s;
}

.box:hover {
    background-color: rgb(0, 0, 0);
    color: white;
    box-shadow: 0 0 10px rgb(0, 0, 0, .9);
}
.box:hover .box_text a {
    color: white !important;
    font-weight: 900;
    font-family: 'Roboto',serif;
}

.box img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
}

.box_text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.name_Time {
    display: flex;
    justify-content: space-between;
}

.name_Time span span,
.name_Time span:nth-child(2) {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
}

.name_Time span:nth-child(2) {
    font-weight: 600;
}

.title {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: justify;
    font-weight: 900;
}

.desc {
    text-align: justify;
}

a {
    text-decoration: none;
    font-size: 18px;
}

.err {
    background-color: rgb(255, 0, 0, .7);
    color: white;
    padding: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.err h2 {
    font-family: 'Roboto', sans-serif;
}