/* Basic styles for the body */
body {
    background-color: rgb(29, 59, 69); /* Sets the background color */
    font-family: Ubuntu; /* Sets the font family */
    margin: 0; /* Removes default margin */
    padding: 40px; /* Adds padding around the content */
}

.intro {
    background-color: rgb(39, 37, 37); /* Sets the background color */
    font-family: Ubuntu; /* Sets the font family */
    margin: 0; /* Removes default margin */
    padding: 40px; /* Adds padding around the content */
    text-align: center;
}

.tux {
    background-color: rgb(29, 59, 69); /* Sets the background color */
    font-family: Ubuntu; /* Sets the font family */
    margin: 0; /* Removes default margin */
    padding: 40px; /* Adds padding around the content */
    text-align: center;
}

.home {
    background-color: rgb(32, 64, 83); /* Sets the background color */
    font-family: Ubuntu; /* Sets the font family */
    margin: 0; /* Removes default margin */
    padding: 40px; /* Adds padding around the content */
    font-size: 20px;
    text-align: left;
}

.acronym {
    background-color: rgb(29, 47, 53); /* Sets the background color */
    font-family: Ubuntu; /* Sets the font family */
    color: rgb(160, 160, 199);
    margin: 0; /* Removes default margin */
    padding: 40px; /* Adds padding around the content */
    text-align: center;
}

.link {
    background-color: rgb(32, 64, 83); /* Sets the background color */
    font-family: Ubuntu; /* Sets the font family */
    color: rgb(255, 255, 255);
    margin: 0; /* Removes default margin */
    padding: 40px; /* Adds padding around the content */
    text-align: center;
}

/* Styles for headings */
h1 {
    color: rgb(129, 129, 177); /* Sets the text color for h1 */
    text-align: center; /* Centers the heading */
}

h2 {
    color: rgb(97, 131, 97); /* Sets the text color for h2 */
}

h3 {
    color: rgb(204, 176, 237); /* Sets the text color for h3 */
    text-align: right;
}


/* Styles for paragraphs */
p {
    color: white;
    font-size: 20px; /* Sets the font size for paragraphs */
    line-height: 1.5; /* Sets the line height for better readability */
}