<<<<<<< HEAD
*{
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
}

html{
    height: 100vh;
    overflow: hidden;
    /* color-scheme: dark; */
    font-family: Arial, Helvetica, sans-serif;

    --text: #180202;
    --background: #fafafa;
    --primary: #d12600;
    --secondary: #e6e6e5;
    --accent: #ff6d4d;
    --green: #599059;

    /* background-color: var(--background); */
    background-color: #180202;
}

body{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

img, button{
    cursor: pointer;
}

.wrapper{
    position: relative;
    max-width: 500px;
    width: 100%;
    aspect-ratio: 1/1.5;
    min-height: 650px;

    overflow: hidden;
    border-radius: 10px;

    background-color: var(--background);
}

.header{
    margin: auto;
    height: 30px;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* background-color: orange; */
}

.layout{
    /* background-color: red; */

    height: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.englishlayout{
    display: flex;
}

.spainlayout{
    display: none;
}

.francelayout{
    display: none;
}

/* Sidemenu */
.sidemenu{
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    width: 50%;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    background-color: var(--primary);
}

.menuhead{
    position: absolute;
    top: 5px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sidemenu p{
    background-color: var(--secondary);
    width: 80%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-weight: bolder;
    border-radius: 5px;
    margin: 0;
}

.sidemenu button{
    height: 30px;
    width: 80%;
    border: 0;
    outline: 0;
    border-radius: 5px;

    color: var(--text);
    background-color: var(--secondary);
    font-weight: bolder;
}

/* ---------Layout--------- */

/* Inputs */

.inputs{
    width: 100%;
    height: 70px;
    padding-top: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    /* background-color: gainsboro; */
}

.inputs input{
    width: 40%;
    height: 20px;
    border: 0;
    border-bottom: 3px solid var(--accent);
    background-color: var(--background);
    outline: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: 0.2s ease-in-out 0s;
}

.inputs input:focus{
    height: 30px;
}

.inputs button{
    width: 10%;
    height: 20px;
    border-radius: 5px;
    background-color: var(--accent);
    color: var(--text);
    font-weight: bolder;
}

#success{
    /* position: absolute; */
    top: 75px;
    height: 30px;
    width: 100%;

    color: var(--green);
    text-align: center;
    line-height: 30px;
    font-size: large;
    /* background-color: red; */
}

/* Score */

.score{
    /* background-color: red; */
    width: 100%;
    height: 30px;

    text-align: center;
    line-height: 30px;
    font-weight: bolder;
    color: var(--accent);
}

#score::after{
    content: ' Punkte';
    color: var(--text);
}

/* Zu übersetzende Vokabel */

.card{
    width: 50%;
    height: 100px;
    border-radius: 10px;

    background-color: var(--accent);
    color: var(--secondary);
    box-shadow: 0px 0px 5px 5px var(--secondary);
    font-weight: bolder;

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: xx-large;
}

/* Choices */

.choicewrapper{
    width: 100%;
    height: 50%;
    /* background-color: red; */

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.choice{
    width: calc(50% - 1rem);
    height: calc(50% - 1rem);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent);
    color: var(--secondary);
}

.choice span{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
    font-size: x-large;
    cursor: pointer;
}

/* ----------Footer---------- */

.footer{
    width: 100%;
    position: absolute;
    bottom: 10px;

    text-align: center;
    font-weight: bolder;
=======
*{
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
}

html{
    height: 100vh;
    overflow: hidden;
    /* color-scheme: dark; */
    font-family: Arial, Helvetica, sans-serif;

    --text: #180202;
    --background: #fafafa;
    --primary: #d12600;
    --secondary: #e6e6e5;
    --accent: #ff6d4d;
    --green: #599059;

    /* background-color: var(--background); */
    background-color: #180202;
}

body{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

img, button{
    cursor: pointer;
}

.wrapper{
    position: relative;
    max-width: 500px;
    width: 100%;
    aspect-ratio: 1/1.5;
    min-height: 650px;

    overflow: hidden;
    border-radius: 10px;

    background-color: var(--background);
}

.header{
    margin: auto;
    height: 30px;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* background-color: orange; */
}

.layout{
    /* background-color: red; */

    height: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.englishlayout{
    display: flex;
}

.spainlayout{
    display: none;
}

.francelayout{
    display: none;
}

/* Sidemenu */
.sidemenu{
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    width: 50%;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    background-color: var(--primary);
}

.menuhead{
    position: absolute;
    top: 5px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sidemenu p{
    background-color: var(--secondary);
    width: 80%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-weight: bolder;
    border-radius: 5px;
    margin: 0;
}

.sidemenu button{
    height: 30px;
    width: 80%;
    border: 0;
    outline: 0;
    border-radius: 5px;

    color: var(--text);
    background-color: var(--secondary);
    font-weight: bolder;
}

/* ---------Layout--------- */

/* Inputs */

.inputs{
    width: 100%;
    height: 70px;
    padding-top: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    /* background-color: gainsboro; */
}

.inputs input{
    width: 40%;
    height: 20px;
    border: 0;
    border-bottom: 3px solid var(--accent);
    background-color: var(--background);
    outline: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: 0.2s ease-in-out 0s;
}

.inputs input:focus{
    height: 30px;
}

.inputs button{
    width: 10%;
    height: 20px;
    border-radius: 5px;
    background-color: var(--accent);
    color: var(--text);
    font-weight: bolder;
}

#success{
    /* position: absolute; */
    top: 75px;
    height: 30px;
    width: 100%;

    color: var(--green);
    text-align: center;
    line-height: 30px;
    font-size: large;
    /* background-color: red; */
}

/* Score */

.score{
    /* background-color: red; */
    width: 100%;
    height: 30px;

    text-align: center;
    line-height: 30px;
    font-weight: bolder;
    color: var(--accent);
}

#score::after{
    content: ' Punkte';
    color: var(--text);
}

/* Zu übersetzende Vokabel */

.card{
    width: 50%;
    height: 100px;
    border-radius: 10px;

    background-color: var(--accent);
    color: var(--secondary);
    box-shadow: 0px 0px 5px 5px var(--secondary);
    font-weight: bolder;

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: xx-large;
}

/* Choices */

.choicewrapper{
    width: 100%;
    height: 50%;
    /* background-color: red; */

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.choice{
    width: calc(50% - 1rem);
    height: calc(50% - 1rem);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent);
    color: var(--secondary);
}

.choice span{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bolder;
    font-size: x-large;
    cursor: pointer;
}

/* ----------Footer---------- */

.footer{
    width: 100%;
    position: absolute;
    bottom: 10px;

    text-align: center;
    font-weight: bolder;
>>>>>>> d55c3303293ce61e736f7ff4e9a5ca25270b4a5a
}