body {
    display: flex;
    flex-flow: column nowrap;
    /* justify-content: center; */
    margin: 0;
    /* font-family: "Roboto"; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* i get this upper value form intellisence  */
}


header,
.main_content,
footer {
    background: rgb(5, 34, 34);
    color: white;
}

header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 20px 10px 20px 10px;
    /* margin-bottom: 30px; */
    align-items: center;
    margin-bottom: 20px;
}

.header_logo {
    font-size: 30px;
    font-weight: 800;
    /* white-space: nowrap; */
    transition: color 0.5s ease,
        transform 1.5s ease;
    transform-origin: left center;
}

.header_logo:hover {
    color: red;
    transform: rotate(360deg) scale(1.5);
}

.header_links {
    display: flex;
    flex-flow: row-reverse nowrap;
    gap: 20px;
    margin: 10px;
}

.header_links div:hover {
    color: rgb(255, 0, 0);
    font-weight: 700;
    transform: scale(1.1);
    transition: all 1s ease;
    border: 1px solid white;
}

.main_content {
    display: flex;
    flex-flow: row wrap;
    gap: 10vw;
}

.left {
    display: flex;
    flex-flow: column nowrap;
    flex: 6;
    margin-left: 2vw;
    gap: 10px;
}

.right {
    flex: 4;
    display: flex;
    min-width: 300px;

}

.left .main_title {
    font-size: 36px;
    font-weight: 900;
    max-width: 50%;
    padding-top: 20px;
}

.left .main_description {
    font-size: 20px;
    max-width: 80%;
}

.main_content button {
    width: 40%;
    background: cyan;
    border-radius: 10px;
}

.main_image {
    background: rgb(240, 243, 236);
    color: rgb(230, 4, 4);
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    flex: 1;

}

.placeholder_text {
    width: 60%;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}

.random_information h1 {
    text-align: center;
}

.items {
    display: flex;
    flex-flow: row wrap;
    gap: 5vw;
    justify-content: space-between;
    padding: 50px;
}

.item {
    flex: 1 1 150px;
    max-width: 200px;
}

.card_image {
    aspect-ratio: 1/1;
    border: 3px solid blue;
    border-radius: 15px;
    margin-bottom: 20px;

    /* transition: all 0.5s ease; */
    /* transition: border 0.3s ease, transform 1.3s ease; */
    /* upper rather than writing in the one line i can separte like below */

    transition: border 0.3s ease,
        transform 1.3s ease;

}

.card_image:hover {
    border: 20px solid red;
    transform: scale(1.1);
}

.card_text {
    max-width: 90%;
    text-align: center;
    font-weight: 800;
    /* text-align: center; */
}

.card_text:hover {
    color: red;
}

.comment {
    display: flex;
    flex-flow: column nowrap;
    background: #E5E7EB;
    gap: 5px;
}

.comment .user_message {
    font-size: 36px;
    color: #1f2937;
    font-weight: 300;
    padding: 5vw 10vw;
    text-align: right;
}

.comment .user_name {
    font-size: 30px;
    font-weight: 900;
    align-self: flex-end;
    margin-right: 10vw;
    margin-bottom: 15px;
}

.small_ad {
    background: rgb(4, 175, 243);
    border: 1px solid black;
    border-radius: 10px;
    width: 90vw;
    align-self: center;
    padding: 5px 10px;

    display: flex;
    flex-flow: row wrap;
    gap: 2vw;
    color: white;
    margin-top: 20px;
}

.small_ad .text {
    flex: 8;
    display: flex;
    flex-flow: column nowrap;
}

.small_ad button {
    border-radius: 5px;
    flex: 2;
    min-width: 10vw;
    font-size: 20px;
    background: inherit;
    align-self: center;
    color: inherit;
}

.small_ad .text .title {
    font-size: 30px;
    font-weight: 700;
    margin: 10px;
}

.small_ad .text .description {
    margin: 10px;
    font-size: 20px;
}

footer {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
}