
@view-transition {
    navigation: auto;
}

*{
    margin: 0px;
    padding: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header{
    background-color: purple;
    display: flex;
    align-items: center;
    height: 80px;
}

nav{
    flex: 1;
}

nav ul{
    display: flex;
    justify-content: space-evenly;
}

nav ul li{
    list-style: none;
}

nav a{
    text-decoration: none;
    color: #000;
}

nav a:hover{
    color: red;
    text-shadow: 1px 1px 10px black;
}

h1{
    padding: 10px 30px;
}

main{
    background-color: white;
    min-height: calc(100vh - 80px - 40px);
    padding: 30px;
}

footer{
    background-color: purple;
    height: 40px;
    text-align: center;
    color: white;
}

main section{
    margin: 20px 0px;
}

a.active_page{
    color: white;
    text-shadow: 1px 1px 1px black;
}

form{
    width: 500px;
    border: 3px solid black;
    padding: 15px;
    border-radius: 20px;
    margin: 50px auto;
}

#submit_button{
    display: block;
    width: 100%;
    border: none;
    font-size: 25px;
    background-color: red;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.8s;
}

#submit_button:hover{
    background-color: darkred;
}

form h3{
text-align: center;
}

fieldset{
    margin: 10px 0px;
    padding: 10px;
}

.input_group{
    margin: 8px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

form input, form select, form textarea{
    font-size: 15px;
    flex: 1;
    padding: 4px;
    outline: none;
}

form textarea{
    width: 100%;
    resize: vertical;
    field-sizing: content;
}

#print_button{
    padding: 10px;
    border-radius: 10px;
    border: none;
    background-color: red;
    color: white;
    cursor: pointer;
    transition: 0.8s;
    position: fixed;
    top: 90px;
    right: 50px;
}

#print_button:hover{
    background-color: darkred;
}

.img_on_left, .img_on_right{
    border: 3px solid black;
    box-shadow: 2px 2px 15px purple;
    border-radius: 30px;
    padding: 20px;
    background-color: white;
    min-height: 340px;
}

.img_on_left h3, .img_on_right h3{
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.img_on_left img{
    float: left;
    display: block;
    border-radius: 15px;
    margin: 0 20px 20px 0;
}

.img_on_right img{
    float: right;
    display: block;
    border-radius: 15px;
    margin: 0 0 20px 20px;
}

.img_on_left p, .img_on_right p{
    text-align: justify;
}

.img_on_left li, .img_on_right li{
    list-style-position: inside;
}


.home_page_img{
    border: 3px solid black;
    box-shadow: 2px 2px 15px purple;
    border-radius: 30px;
    padding: 20px;
    background-color: white;
    min-height: 340px;
}

.home_page_img h3{
    text-align: center;
    font-size: 15px;
    margin-bottom: 20px;
}

.home_page_img{
    float: left;
    display: block;
    border-radius: 15px;
    margin: 0 20px 20px 0;
}

.home_page_img p{
    text-align: justify;
    text-align: center;
}

.home_page_img a{
    float: left;
}

table{
    width: 700px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    border-collapse: collapse;
    margin-bottom: 20px;
}

td, th{
    border: 3px solid black;
}

td{
    text-align: center;
    color: black;
    width: 100px;
}

.Q_and_A{
    margin-left: 20px;
}