
body {
        background-image:url("image.png");
        background-size: cover;
        background-repeat:no-repeat;
        text-align: center;
}
h1{
        font-size: 60px;
}
nav ul{
        list-style: none;
        display: flex;  
        justify-content: center;
        padding: 0;
        position: relative;
        margin-top: 100px; 
}
nav ul li{
           margin: 0 10px;
}
nav a{
        color: black;
        text-decoration: none;
        padding: 5px 10px;
        font-size: 35px;
}
nav a:hover{
        background: rgb(134, 159, 243);
}
main{
        font-size: 35px;
        padding: 110px;
}
table{
        width: 100%;
        height: 200px;
        table-layout: auto;
        position: relative;
        margin-top: 10px;
        border:none;
}
table th,td{
        border: 5px solid black;
}
th{
        background: rgb(59, 154, 243);
        color: aliceblue;
}
tr:hover{
        background: rgb(92, 197, 254);
}
form{
        display: flex;
        flex-direction: column;
        width: 100%;
}
label{
        font-size: 35px;
}
input,textarea{
        margin-bottom: 20px;
        margin-left: 15px;
        padding: 10px;
}
button{
        background: rgb(8, 71, 115);
        color: rgb(222, 226, 226);
        padding: 10PX;
        border: none;
        cursor: pointer;
        width: 300px;
        height: 40px;    
        margin-left: 480px;    
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    text-align: center;
}
h1 {
    color: #333;
    margin-bottom: 20px;
}
img[alt="image for collage"] {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
p {
    font-size: 18px;
    color: #555;
    margin: 10px 0;
}

strong {
    color: #000;
}
ul {
    list-style: none;
    padding: 0;
}

ul li {
    display: inline-block;
    margin: 0 10px;
}

ul li a {
    text-decoration: none;
    color: #0f0f0f;
    font-weight: bold;
    font-style: italic;
}

ul li a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {

  h1 {
    font-size: 30px;
  }

  nav ul {
    flex-direction: column;
    margin-top: 20px;
  }

  nav ul li {
    margin: 10px 0;
  }

  nav a {
    font-size: 20px;
    display: block;
  }

  main {
    font-size: 20px;
    padding: 20px;
  }

  table {
    font-size: 14px;
  }
}
