body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    font-family: monospace;
    background-color: white;
}

.content-wrapper {
    font-size: 15px;
    flex-grow: 1;
    justify-content: center;
    width: 100%;
    display: flex;
    margin-bottom: 100px;
}

.content{
    max-width: 400px;
    height: 100%;
    text-align: center;
    overflow: hidden;
}

a{
    text-decoration: none;
}

.logo-wrapper{ 
    height: 400px;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper img{
    max-width: 100%;
    height: 100%;
}

#text{
    display: inline-flex;
    justify-content: center;
    color: white;
    background-color: orange;
    width: 80%;
    margin: 10px;
    padding: 3%;
    border-radius: 10px;
    font-weight: bold;
    font-size: 100%;
    text-shadow: 4px 4px 4px black;
    box-shadow: 8px 8px 8px grey;
    outline: none;
    border: none;
}

.power-div{
    bottom: 0;
    width: 100%;
    font-size: 80%;
    font-weight: bold;
}

.image-wrapper{
    width: 40%;
    margin: 10% 30%;
}

.image-wrapper img{
    width: 80%;
    margin-top: 2%;
}

hr {
    border-top: dotted 1px; 
    color: grey;
}

.selecttruck {
    width: 80%;
    margin: 10px;
    padding: 3%;
    border-radius: 10px;
    font-weight: bold;
    font-size: 100%;
    color: black;
    outline: none;
    border: 1px solid lightgray;
}

button {
    cursor: pointer;
}

.langwrapper {
    height: 35px;
    margin: 0 10px 0 0;
    float: right;
    width: 200px;
    display: inline-flex;
    text-align: center;
    position: absolute;
    right: 0;
}

.languagebtn {
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
    display: inline-flex;
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: inherit;
    top: 7px;
}

.languagebtn:hover,
.languagebtn:focus {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    color: rgba(0, 0, 0, 0.65);
}

.languagebtn:hover {
    transform: translateY(-1px);
}

.languagebtn:active {
    background-color: #F0F0F1;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
    color: rgba(0, 0, 0, 0.65);
    transform: translateY(0);
}

.dropdown-language {
    display: none;
    position: absolute;
    background-color: whitesmoke;
    font-weight: lighter;
    width: 200px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 55px;
}

.dropdown-language a {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-language a:hover {
    color: black;
    background-color: lightgrey;
}

.show {
    display: block;
}