
body {
    margin: 0;
    font-family: "Arial", sans-serif;
    background-color: #fbff00; 
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
}

.header {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-family: "Anton", sans-serif;
    align-items: center;
    width: 100%;
    height: 20px;
    padding: 10px 5px;
    background-color: #b8b8b8;
}

.header-left h1 {
    font-size: 1.5em;
    margin: 20px;
    font-weight: normal;
}

.header-right {
    font-size: 1.5em;
    display: flex;
    margin: 20px;
    gap: 20px;
    flex-grow: 1;
    justify-content: flex-end;
}

.header-right a {
    font-size: 1em;
    text-decoration: none;
    color: #000;
    font-weight: normal;
}


@media (max-width: 768px) {
    .header {
        flex-direction: row;
        height: 10px;
        padding: 20px;
        
    }

    .header-left h1 {
        font-size: 1em;
    }

    .header-right a {
        font-size: 0.65em;
    }
    
    .additional-header h2 {
        font-size: 1em; /* Responsive adjustment */
    }
}



.platform-container {
    width: 100%;
    max-width: 1920px;
    margin: 10px auto;
    text-align: center;
}

.platform-container h2 {
    font-size:1em;
    font-weight: normal;
}

.platform-container p {
    font-size: 1em;
    text-align: justify
}
.platform-container h2 {
    font-size: 1em;
    font-weight: bold;
}

.platform-container hr {
    border: 0;
    border-top: px solid #000000;
    margin: 20px 0;
    text-align: justify;
}

.platform-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.platform-column {
    flex: 1;
    text-align: left;
    padding: 20px;
    border-left: 0px solid #000000;
    box-sizing: border-box;
}

.platform-column:first-child {
    border-left: none;
}

.platform-column img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.platform-column p {
    font-size: 1em;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .platform-columns {
        flex-direction: column;
    }

    .platform-column {
        border-left: none;
    }
    .platform-container h2 {
    font-size:1em;
    height: 10px;
    padding: 10px;
}

    .platform-column:first-child {
        border-top: none;
    }
}
