@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');
.cal-sans-regular {
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}
*{
    margin: 0;
    font-family: "Cal Sans";
    box-sizing: border-box;
}
.base{
    height: 75vh;
    background-image: linear-gradient(#ffee38, #eb9234);
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
    overflow: hidden;
}
.data{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.data{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.logo{
    width: 200px;
}
.search{
    height: 20%;
    width: 20vw;
    border: none;
    text-align: center;
    border-radius: 10px;
    transition: 100ms all ease-in-out;
}
.search:hover{
    outline: 3px solid rgb(255, 106, 0);
}
.search:focus{
    outline: 3px solid rgb(255, 106, 0);
    width:25vw;
}
.search::placeholder{
    color: rgb(220, 220, 220);
}
button{
    border-radius: 10px;
    border: none;
    width: 80px;
    height: 40px;
    background-color: white;
    color: rgb(255, 106, 0);
    transition: 100ms all ease-in-out
}
button:hover{
    background-color: #fde7b7;
}
.extra{
    height: 75vh;
    width: 100%;
    background-image: url(doodle.avif);
    background-repeat: repeat;
    background-size: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.results{
    position: relative;
    top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20pt;
}
.choices{
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
    padding: 5px;
    width: 220px;
    height: 20%;
    gap: 10px;
    border-radius: 10px;
}
.name {
    color: rgb(255, 106, 0);
    width: 100px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    box-sizing: border-box;
    padding: 10px;
    transition: all 200ms ease-in-out;
}
.choice{
    text-align: center;
}
.choice input{
    display: none;
}
.choices .choice input:checked + .name{
    background-color: #fde7b7;
}
.wrapper{
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.poster{
    background-image: linear-gradient(to bottom right, #ff6d38, #ffcc55);
    border-radius: 20px;
    width: 600px;
    height: fit-content;
    box-sizing: border-box;
    padding: 20px;
    display: grid;
    grid-template-areas: 
    "image  info"
    "image  info";
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}
.poster_image{
    max-width: 100%;
    height: auto;
    object-fit: cover;
    grid-area: image;
    border-radius: 20px;
}
.info{
    color: white;
    max-width: 100%;
    height: 100%;
    grid-area: info;
}
.info p{
    font-size: 10pt;
    position: relative;
    top: 5px;
}
.combiner{
    display: flex;
    justify-content: flex-start;
    gap: 5px;
}
.supplier{
    position: relative;
    top: 10px;
    width: 20%;
    border-radius: 100%;
    box-sizing: border-box;
    border: 2px solid rgb(0, 255, 153);
}
.poster{
    transition: 200ms box-shadow ease-in-out;
}
.poster:hover{
    box-shadow: 53px 62px 145px -31px rgba(0,0,0,0.27);
    -webkit-box-shadow: 53px 62px 145px -31px rgba(0,0,0,0.27);
    -moz-box-shadow: 53px 62px 145px -31px rgba(0,0,0,0.27);
}
@media screen and (max-width:800px) {
    .base{
        border-bottom-right-radius: 80px;
        border-bottom-left-radius: 80px;
    }
    .extra{
        background-size: 60%;
    }
    .search{
        width: 40vw;
    }
    .search:focus{
        width: 50vw;
    }
    button{
        width: 20vw;
    }
    .wrapper{
        padding-left: 10vw;
        padding-right: 10vw;
        padding-top: 10px;
        padding-bottom: 20px;
    }
    .poster{
        width: 350px;
    }
}
