@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400&display=swap');

html {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
}

body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    font-family: "Arial";

}

ul {
    display: flex;
    flex-direction: row;
    gap: 2em;
    list-style: none;
    background-image: url("../images/bckground.jpg");
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    min-height: 25vh;
    margin: 0;
}

li {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    width: 7em;
    height: 2em;
    border-radius: 10px;
    margin-top: 2em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
}

li a {
    color: white;
    text-decoration: none;
}

#form_button {
    background-color: #F74586;
    margin-left: 2.5em;
}

#container {
    width: 70%;
    margin: auto;
    min-height: 100%;
}

h1,
h2 {
    font-weight: 800;
}

figure {
    margin-left: 0;
}

img {
    border-radius: 15px;
    box-shadow: 0px 0px 24px -19px rgba(0, 0, 0, 1);
}

figcaption {
    color: gray;
    font-size: 0.8em;
    margin-top: 1.2em;
    margin-bottom: 1.2em;
}

table {
    width: 64.5vw;
    border-collapse: collapse;
}

thead {
    background-color: #E0BADC;
}

th {
    text-align: left;
}

tr {
    border-spacing: 1px;
}

th,
td {
    padding: 0.8em;
    border-bottom: 1px solid rgba(97, 97, 97, 0.25);
}


.line {
    width: 65%;
}

.line_2 {
    width: 35%;
}

form {
    background-color: white;
    border-radius: 15px;
    border: 1px solid #E0BADC;
    padding: 2em;
    width: 60vw;
}

label {
    font-weight: 600;
}

#submit {
    background-color: #E0BADC;
    border: 1px solid #E0BADC;
    border-radius: 5px;
    width: 5.5em;
    height: 2.5em;
    font-weight: 600;
}

a {
    color: black;
    font-family: "Ubuntu";
}