@font-face {
    font-family: 'My font';
    src: url('Norse-Bold.ttf');
}

input:focus {
    border: 1px solid lightblue;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.75);
}

input.error {
    border: 1px solid red light;
}

.parent-container {
    display: flex;
    height: auto;
    padding: 0;
    border: 1px solid black;
    margin: 20px;
}

.image-container {
    float: left;
    display: flex;
}

#leaves {
    width: fit-content;
}

.odin-container {
    display: flex;
    justify-content: center;
    position: absolute;
    opacity: 0.5;
    top: 200px;
    height: 20%;
    width: 385.5px;
    background-color: grey;
}

#odin {
    height: auto;
}

.odin-font {
    font-family: 'My font';
    font-size: 6em;
}

.form-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: 'Courier New', Courier, monospace;
}

.form-header {
    height: 40%;
    background-color: lightgray;
    padding-left: 30px;
    color: black;
    display: flex;
    align-items: center;
}

.form-body {
    min-height: auto;
    display: flex;
    padding-left: 30px;
    color: black;
    flex-wrap: wrap;
}

.form-footer {
    height: 40%;
    background-color: lightgray;
    padding-left: 30px;
    color: black;
}

button {
    background-color: #596D48;
    color: white;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
}

a {
    color: #596D48;
    text-decoration: none;
}

.form-horizontal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 80px;
    padding-top: 20px;
}

.body-1,
.body-2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

p {
    color: red;
    text-decoration: underline;
}