* {
    box-sizing: border-box;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
}

html {
    /*font-size: 12px;*/
    font-family: Garamond, serif;
    color: #7a7a52;
}

input[type=text], select {

    padding: 3px 6px;
    margin: 4px 2px;
    /*margin-left: 5%;*/
    display: inline-block;
    border: 1px solid #adad85;
    border-radius: 4px;
    font-family: Garamond, serif;
    margin-left: 10px;
}

textarea:focus, input:focus {
    color: #adad85;
}

input[type=date], select {

    padding: 3px 6px;
    margin: 4px 2px;
    display: inline-block;
    border: 1px solid #adad85;
    border-radius: 4px;
    font-family: Garamond, serif;
    color: #adad85;
    margin-left: 10px;
}


input[type=submit] {
    background-color: white;
    border: 1px solid #adad85;
    color: #adad85;
    padding: 3px 6px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    font-family: Garamond, serif;
    margin-left: 10px;
}

input, select, textarea {
    color: #adad85;
}

input[type=number], select {

    padding: 3px 6px;
    margin: 4px 2px;
    /*margin-left: 5%;*/
    display: inline-block;
    border: 1px solid #adad85;
    border-radius: 4px;
    font-family: Garamond, serif;
    margin-left: 10px;
}

button {
    padding: 3px 6px;
    margin: 4px 2px;
    /*margin-left: 5%;*/
    display: inline-block;
    background-color: white;
    border: 1px solid #adad85;
    color: #adad85;
    border-radius: 4px;
    font-family: Garamond, serif;
    margin-left: 10px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

.container.card {
    margin-top: 12.3rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: -5px -4px 47px 3px rgba(198, 198, 198, 0.3);
    text-align: center;
    padding: 3.6rem;
    /* padding-bottom: 3.6rem; */
}

.title-main {
    font-size: 3.6rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 2.1rem;
}

.main-image svg {
    max-width: 61rem;
    margin-bottom: 2rem;
}

.subheading {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.card .text {
    font-size: 13px;
    letter-spacing: 0.26px;

}

footer {
    color: #b1b1b1;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.7rem;
}

footer .logo svg {
    width: 145px;
    padding-left: 11px;
}

footer .left-side {
    display: flex;
    align-items: center;
}

.footerbottomtext {
    font-size: 1.6rem
}

/* Medias */
@media screen and (max-width: 1024px) {
    .container {
        max-width: 90%;
    }


    @media screen and (max-width: 480px) {
        html {
            font-size: 1.7px;
        }

        .container {
            max-width: 95%;
        }

        .title-main {
            font-size: 6.6vw;
        }

        /* .container.card {margin-top: 2rem;} */
        .subheading {
            font-size: 13px;
        }

        .card .text {
            font-size: 12px;
        }

        footer {
            flex-direction: column;
        }
    }
}

body {
    background-color: #ffe6e6;
}

.navbar {
    overflow: hidden;
    background-color: white;
}

.navbar a {
    float: left;
    font-size: 16px;
    color: #adad85;
    text-align: center;
    text-decoration: none;
}

.subnav {
    float: left;
    overflow: hidden;
}

.subnav .subnavbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: #adad85;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover,
.subnav:hover .subnavbtn {
    background-color: #f5f5f0;
    color: #adad85;
}

.subnav-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: #f5f5f0;
    width: 100%;
    z-index: 1;
}

.subnav-content a {
    float: left;
    color: #adad85;
    padding: 14px 16px;
    text-decoration: none;
}

.subnav-content a:hover {
    background-color: #ebebe0;
    color: #adad85;
}

.subnav:hover .subnav-content {
    display: block;
}

subnav a:active, #active {
    background-color: #adad85;
    color: white
}

hr {
    border-top: 10px dashed #eacccc;
}

.normal {
    font-size: 16px;
}

img {
   border-radius: 10px; 
}


h2 {
        margin-left: 10px;
}

h3 {
    margin-left: 10px;
}

.margined {
    margin-left: 10px;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

form {
    box-sizing: border-box;
    padding: 2rem;
    border-radius: 1rem;

    display: inline_block;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

tr:nth-child(even) {
    background-color: white;
    border: collapse;
}
tr:nth-child(odd) {
    background-color: #fff4f4;
    border: collapse;
}

table {
    border-collapse: collapse;
}

th, td {
    text-align: left;
    padding: 8px;
}