body {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.container {
    text-align: center;
    padding: 2em 3em;
}

.top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 0.2px solid gray;
border-radius: 20px;
}


.top img {
    height: 20%;
    width: 20%;
    margin: 1em;
}

.profile_img {
    height: 5%;
    width:5%;
    margin: 1em;
}

.main-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

h1 {
    font-size: 2rem;
}

.top-right > p {
    line-height: 0.3em;
}

.bold {
    font-weight: 700;
}

ul li {
    list-style-type: none;
    line-height: 1.2em;
}

.categories {
    padding: 1em;
}

.current_date {
    height: 30px;
}

.immediate {
    color: red;
    font-weight: bold;
}

.bottom  li{
    padding: 0.5em;
}

@media screen and (min-width: 724px) {
    body {
        width: 100vw;
    }
}

@media screen and (max-width: 544px) {
    

    .container {
    margin: 2em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .basic {
        width: 100vw;
        text-align: center;
    }

    .bottom  li{
        padding: 0;
    }

    .logo_img {
        display: none;
    }

    .profile_img {
        display: none;
    }

    .main-top {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 347px) {
    .logo_img {
        display: none;
    }

    .profile_img {
        display: none;
    }

    .license {
        font-size: smaller;
    }
}