:root {
    --drbubu-red: #A20000;
    --drbubu-blue: #108fce;
    --drbubu-rgb-blue: rgb(54,168,223);
    --hover-rgb-navyblue: rgb(23, 3, 123);
    --background-color: white;
    --font-color: white;
    --font-family: 'Arial, sans-serif';
    --font-size: 16px;     
    --drbubu-social-media-instagram-red:  rgb(207, 3, 3);
    --drbubu-social-media-youtube-red: rgb(193, 3, 3);
}

/* CSS Reset */
*,
*::before,
*::after  {
    margin: 0;
    padding: 0;
    border: 0;   
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/****Add your custom styles below this line ****/

/* Global Styles */

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: var(--font-size);
    font-family: var(--font-family);
    color: var(--drbubu-red);
    background-color: var(--background-color);
}

header {
    background-color: var(--drbubu-red);
    color: var(--font-color);
}
   

main {    
    background-color: var(--background-color);
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.3);
}

footer {   
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--drbubu-red);
    color: var(--font-color);
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.3);   
}

/*Styling*/

/* Header Styles */
.home-header {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 10px;    
    background-color: var(--drbubu-red);
    color: var(--font-color);  
}

.navbar-logo__container {
    display: flex;  
    flex-flow: column wrap;
    align-items: center;
    justify-content: flex-start;   
}

.logo {  
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: center;
    color: var(--font-color);
    font-weight: 800;
    font-style: italic;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;  
    text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3);     
} 

.navbar-home {
    display: flex;
    flex-flow:  column wrap;
}

.site-header__nav-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;    
    margin: 0;      
    gap: 10px;
    background-color: var(--drbubu-red);  
}     


.site-header__nav-item {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.site-header__nav-button {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: var(--font-size);
    align-self: center;    
    background-color: var(--drbubu-red);
    color: var(--font-color);
    text-decoration: none;
    border: none;
    outline: none;
    padding: 14px 30px;
    border-radius: 4px;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.3);
    text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3); 
    cursor: pointer;
    animation: site-header__nav-button 1s ease-in-out infinite alternate;
    transition:  tranform 250ms;
}

.site-header__nav-button:hover {
    background-color: var(--hover-rgb-navyblue);
    color: white;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.3);
    text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3); 
    transform: translateY(-2.5px);
}

/* Banner Section Styles */

.banner-section {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;  
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.3);
    background-color: var(--background-color);
    margin-bottom: 15px;
}

.banner__container {  
    display: flex;
    flex-direction: row;   
    width: 900px;  
    height: 500px;   
    box-shadow: 5px 6px 20px 7px rgba(0, 0, 0, 0.3);
}

.image__container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 60%;   
    box-shadow: -1px 7px 20px 2px rgba(0, 0, 0, 0.3);
}

.banner-image {   
    object-fit : cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.banner-article__container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom right,rgb(228,230,233), rgb(46,172,226), rgb(54,168,223), rgba(32, 150, 208, 0.732), rgb(37,115,186) ); 
    gap: 10px;
    padding: 10px;    
    width: 40%;
}

.banner-article__container h2 {
   color: var(--font-color);
   font-size: 2rem;
   font-style: italic;
   text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3);     
}

.banner-article__container p {
    color: var(--font-color);
    text-align: center;
    align-content: center; 
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.3);     
}   

.learn-more-banner {  
    text-align: center;
    background-color: var(--drbubu-red);
    color: var(--font-color);
    padding: 12px 20px;
    border-radius: 5px;
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
    text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3);  
}

/* Main Section Styles */

.first-section-article{  
    display: flex; 
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    margin: 10px 0px 10px 0px;   
    box-shadow: -5px 0px 20px 2px rgba(0, 0, 0, 0.3);  
}

.second-section-article {
    display: flex; 
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    margin: 10px 0px 10px 0px;
    box-shadow:  -7px 0px 20px 4px rgba(0, 0, 0, 0.3);  
}

.third-section-article{
    display: flex; 
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    margin: 10px 0px 10px 0px;
    box-shadow: -3px 6px 20px 10px rgba(0, 0, 0, 0.3);  
}

.first-section__row, .second-section__row, .third-section__row {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    height: 400px;   
}

.column-image__left, .column-image__right  {
    flex: 50%;
    align-items: center;   
}

.image-left, .image-right {
    object-fit : cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.column-article__right {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.column-article__right p, .column-article__left p{
    text-align: center;
    align-content: center;
    padding: 10px 20px 10px 20px;  
    font-size: 1rem;
    font-weight: 400;
    color: rgb(4, 4, 6);     
}

.column-article__left {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.button-learn-more {
    text-align: center;   
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: .95rem;    
    background-color: rgb(188, 12, 12);
    color: white;
    text-decoration: none;
    border: none;
    outline: none;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
    text-shadow: 3px 1px 2px rgba(0, 0, 0, 0.3); 
    cursor: pointer;
}

.button-learn-more:hover {
    background-color: var(--hover-rgb-navyblue);
    color: white;
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
}

/* Contact Section Styles */
.contact-section { 
    display: flex; 
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center; 
    background-color: var(--background-color);
    box-shadow: -3px 4px 20px 2px rgba(0, 0, 0, 0.3); 
    margin: 10px 0px 10px 0px;
}

.contact__container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 600px;  
    border-radius: 5px;
    padding-bottom: 10px;   
}

.contact-us-header {
    display: flex;
    justify-content: center;
    text-align: center;  
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 30px 10px 30px;   
}

.contact-form {
    display: flex;
    flex-flow: column nowrap; 
    align-items: stretch;
    justify-content: center;      
    margin: 0 auto;
    padding: 20px;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(90deg, rgba(54, 168, 223,0.694), rgba(44, 149, 210, 0.543) 30%, rgba(8, 113, 174, 0.694));   
}

.contact-form label
{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    text-align: center;   
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic; 
}

.form-item-name {   
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-flow: row nowrap;
    column-gap: 5px;
    width: 100%;
    margin-top: 5px;
}


.firstname-label, .lastname-label, .email-label, .phone-label {
    margin: 5px 0px 5px 0px;   
}

.firstname-set, .lastname-set, .email-set, .phone-set {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column nowrap;
    width: 100%;
    padding: 0px 0px 0px 0px;
}

.form-item-contact {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-flow: row nowrap;
    column-gap: 5px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Text Input Fields */

.firstname-input, .lastname-input, .email-input, .phone-input {
    padding: 1px 0px 1px 15px;
    width: 100%;
    height: 40px;
    background-color: #f8f8f8;
    border: 2px solid var(--drbubu-red);
    border-radius: 4px;    
}

.buttonaction {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;    
}
input[type="submit"] {
    text-align: center;
    align-content: center;
    border: none;
    padding: 12px 30px;
    font-style: italic;
    font-weight: 700;
    background-color: var(--drbubu-red);
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    color: white;
    margin: 4px 2;
    cursor: pointer;
    font-size: 1rem;
}

input[type="submit"]:hover {
    background-color: var(--hover-rgb-navyblue);
    color: white;
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
}

.message-label {
    margin: 10px 5px 0px 0px;
    
}

textarea {
    width: 100%;
    height: 250px;
    padding: 12px;
    border: 2px solid var(--drbubu-red);
    border-radius: 4px;
    background-color: #f8f8f8;
    margin: 10px 0px 15px 0px;
    resize: none;
}



/* Footer Styles */

.home-footer {
    background-image: linear-gradient(0deg, var(--drbubu-red) 0%, rgba(16, 143, 206, 0.898) 100%);
    color: var(--font-color);  
    padding-bottom: 10px;
}

.footer-social-media__container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.socialmedia-links {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding-top: 10px;
}

.socialmedia-links li a {
    text-decoration: none;    
}

.fb-label, .x-label, .insta-label, .You-label, .tik-label {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--font-color);
    text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3); 
    gap: 5px;
}

.copyright {
    text-align: center;
    font-size: 1.2em;
    font-style: italic;
    font-weight: bold;
    color: var(--font-color);    
    padding: 10px 10px 15px 10px; 
    text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3);     
}

/* Media Queries */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .body {
        display: flex;
        flex-direction: column;
        width: 100%;
        font-size: var(--font-size);
        font-family: var(--font-family);
        color: var(--drbubu-red);
        background-color: var(--background-color);
    }    
/* Header Styles */
.home-header {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: space-between;
  
    background-color: var(--drbubu-red);
    color: var(--font-color);  
    width: 100%;
    
}

.navbar-logo__container {
    display: flex;  
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    
}

.logo {  
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    color: var(--font-color);
    font-weight: 800;
    font-style: italic;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;  
    text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3);     
} 

.navbar-home {
    display: flex;
    flex-flow:  column wrap;
}

.site-header__nav-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;    
    margin: 0;      
    
    background-color: var(--drbubu-red);  
}     

.site-header__nav-item {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.site-header__nav-button {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: var(--font-size);
    align-self: center;    
    background-color: var(--drbubu-red);
    color: var(--font-color);
    text-decoration: none;
    border: none;
    outline: none;
    padding: 14px 30px;
    border-radius: 4px;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.3);
    text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3); 
    cursor: pointer;
    animation: site-header__nav-button 1s ease-in-out infinite alternate;
    transition:  tranform 250ms;
}

.site-header__nav-button:hover {
    background-color: var(--hover-rgb-navyblue);
    color: white;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.3);
    text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3); 
    transform: translateY(-2.5px);
}

/* Banner Section Styles */

.banner-section {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;  
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.3);
    background-color: var(--background-color);
    margin-bottom: 15px;
}

.banner__container {  
    display: flex;
    flex-direction: row;   
    width: 300px;    
    box-shadow: 5px 6px 20px 7px rgba(0, 0, 0, 0.3);
}

.image__container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 60%;   
    box-shadow: -1px 7px 20px 2px rgba(0, 0, 0, 0.3);
}

.banner-image {   
    object-fit : cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.banner-article__container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom right,rgb(228,230,233), rgb(46,172,226), rgb(54,168,223), rgba(32, 150, 208, 0.732), rgb(37,115,186) ); 
    gap: 10px;
    padding: 10px;    
    width: 40%;
}

.banner-article__container h2 {
   color: var(--font-color);
   font-size: 2rem;
   font-style: italic;
   text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3);     
}

.banner-article__container p {
    color: var(--font-color);
    text-align: center;
    align-content: center; 
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.3);     
}   

.learn-more-banner {  
    text-align: center;
    background-color: var(--drbubu-red);
    color: var(--font-color);
    padding: 12px 20px;
    border-radius: 5px;
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
    text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.3);  
}

* Main Section Styles */

.first-section-article{  
    display: flex; 
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 10px 0px 10px 0px;   
    box-shadow: -5px 0px 20px 2px rgba(0, 0, 0, 0.3);  
    height: 300px;
}

.second-section-article {
    display: flex; 
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 10px 0px 10px 0px;
    box-shadow:  -7px 0px 20px 4px rgba(0, 0, 0, 0.3);  
    height: 300px;
}

.third-section-article{
    display: flex; 
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 10px 0px 10px 0px;
    box-shadow: -3px 6px 20px 10px rgba(0, 0, 0, 0.3); 
    height: 300px; 
}

.first-section__row, .second-section__row, .third-section__row {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
  
}

.column-image__left, .column-image__right  {
    flex: 50%;
    align-items: center;   
}

.image-left, .image-right {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.column-article__right {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.column-article__right h2, .column-article__left h2 {
    text-align: center;
    align-content: center;
    padding: 10px 20px 10px 20px;  
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--drbubu-red);
      
}

.column-article__right p, .column-article__left p {
   
    padding: 10px 20px 10px 20px;  
    font-size: 1rem;
    font-weight: 400;
    color: rgb(4, 4, 6);     
}

.column-article__left {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.button-learn-more {
    text-align: center;   
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: .95rem;    
    background-color: rgb(188, 12, 12);
    color: white;
    text-decoration: none;
    border: none;
    outline: none;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
    text-shadow: 3px 1px 2px rgba(0, 0, 0, 0.3); 
    cursor: pointer;
}

.button-learn-more:hover {
    background-color: var(--hover-rgb-navyblue);
    color: white;
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
}

/* Contact Section Styles */
.contact-section { 
    display: flex; 
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center; 
    background-color: var(--background-color);
    box-shadow: -3px 4px 20px 2px rgba(0, 0, 0, 0.3); 
    margin: 10px 0px 10px 0px;
    height: 300px;
}

.contact__container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 200px;  
    border-radius: 5px;
    padding-bottom: 10px;   
}

.contact-us-header {
    display: flex;
    justify-content: center;
    text-align: center;  
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 30px 10px 30px;   
}

.contact-form {
    display: flex;
    flex-flow: column wrap; 
    align-items: stretch;
    justify-content: center;      
    margin: 0 auto;
    padding: 20px;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(90deg, rgba(54, 168, 223,0.694), rgba(44, 149, 210, 0.543) 30%, rgba(8, 113, 174, 0.694));   
}

.contact-form label
{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    text-align: center;   
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic; 
}

.form-item-name {   
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-flow: column nowrap;
    column-gap: 5px;
    width: 100%;
    margin-top: 5px;
}


.firstname-label, .lastname-label, .email-label, .phone-label {
    display: flex;
    flex-flow: row nowrap;
    margin: 5px 0px 5px 0px;   
}

.firstname-set, .lastname-set, .email-set, .phone-set {
    display: flex;
    align-items: center;
    justify-content: space-between;    
    width: 100%;
    padding: 0px 0px 0px 0px;
}

.form-item-contact {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-flow: column nowrap;
    column-gap: 5px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Text Input Fields */

.firstname-input, .lastname-input, .email-input, .phone-input {
    padding: 1px 0px 1px 15px;
    width: 100%;   
    background-color: #f8f8f8;
    border: 2px solid var(--drbubu-red);
    border-radius: 4px;    
}

.buttonaction {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;    
}
input[type="submit"] {
    text-align: center;
    align-content: center;
    border: none;
    padding: 12px 30px;
    font-style: italic;
    font-weight: 700;
    background-color: var(--drbubu-red);
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    color: white;
    margin: 4px 2;
    cursor: pointer;
    font-size: 1rem;
}

input[type="submit"]:hover {
    background-color: var(--hover-rgb-navyblue);
    color: white;
    box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3);
}

.message-label {
    margin: 10px 5px 0px 0px;
    
}

textarea {
    width: 100%;
    height: 200px;
    padding: 12px;
    border: 2px solid var(--drbubu-red);
    border-radius: 4px;
    background-color: #f8f8f8;
    margin: 10px 0px 15px 0px;
    resize: none;
}


   

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .body {
        display: flex;
        flex-direction: row;
        width: 100%;
        font-size: var(--font-size);
        font-family: var(--font-family);
        color: var(--drbubu-red);
        background-color: var(--background-color);
    }
   

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .body {
        display: flex;
        flex-direction: column;
        width: 100%;
        font-size: var(--font-size);
        font-family: var(--font-family);
        color: var(--drbubu-red);
        background-color: var(--background-color);
    }
   

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .body {
        display: flex;
        flex-direction: column;
        width: 100%;
        font-size: var(--font-size);
        font-family: var(--font-family);
        color: var(--drbubu-red);
        background-color: var(--background-color);
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .body {
        display: flex;
        flex-direction: column;
        width: 100%;
        font-size: var(--font-size);
        font-family: var(--font-family);
        color: var(--drbubu-red);
        background-color: var(--background-color);
    }
}
   
@media (max-width: 768px) { 
    .body {
        display: flex;
        flex-direction: column;
        width: 100%;
        font-size: var(--font-size);
        font-family: var(--font-family);
        color: var(--drbubu-red);
        background-color: var(--background-color);
    }

    .header {
      /* Adjust header size or other styles for smaller screens */
      display: flex;
      flex-flow: row wrap;
      justify-content: space-evenly;
      align-items: center;
      padding: 10px 50px 10px 50px;    
      background-color: var(--drbubu-red);
      color: var(--font-color);
      box-shadow: 2px 1px 12px 1px rgba(0, 0, 0, 0.3); 
      font-size: 50px;
    }
}
