@import url('https://fonts.googleapis.com/css?family=Righteous&display=swap&effect=3d-float|shadow-multiple');
body{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: rgb(245, 245, 245);
    font-family: 'Righteous', cursive;
}
nav{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 100%;
    height: 55px;
    background: #ffd700;
    margin-bottom: 20px;
}
nav img{
    height: 50px;
    width: max-content;
    margin-right: 5px;
}
nav h1{
    font-size: 30px;
    color: #fff;
    margin-left: 5px;
}
.container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.left{
    width: 600px;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 7px;
    background: #fff;
    border-radius: 8px;
    margin: 10px;
}
.left p{
    width: 100%;
    margin-bottom: 20px;
}
.left h1{
    color: #ffd700;
    font-size: 28px;
    width: 100%;
}
.left input{
    width: 99%;
    border-radius: 7px;
    outline: none;
    padding: 5px;
    border: 2px solid #ffd700;
    box-shadow: 10px 20px 40px rgba(0,0,0,0.1);
    font-size: 18px;
}
.left button{
    width: 250px;
    height: 45px;
    border: none;
    outline: none;
    margin: 12px;
    color: #fff;
    background: #ffd700;
    border-radius: 7px;
    font-size: 20px;
    transition: 0.8s;
}
.left button:hover{
    font-size: 25px;
    background: #fff;
    color: #ffd700;
    border: 2px solid #ffd700;
    box-shadow: 10px 20px 40px rgba(0,0,0,0.1);
}
.right{
    width: 400px;
    height: max-content;
    background: #fff;
    border-radius: 7px;
    margin: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.right img{
    width: 100%;
    height: max-content;
    border-radius: 12px;
}
.right h3{
    color: #ffd700;
}
@media(max-width:500px){
    .right{
        width: 100%;
    }
    .left{
        width: 100%;
    }
}
.pre{
    width: 330px;
    height: max-content;
    padding: 15px;
    background: #ffd700;
    border-radius: 7px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.pre img{
    width: 290px;
    height: 290px;
    border-radius: 5px;
}
.left h3{
    color: #ffd700;
    text-align: center;
    margin-top: 20px;
    animation: type 15s linear infinite;
    text-transform: uppercase;
    transition: 1s;
    font-size: 18px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
}
@keyframes type{
    0%{
        width: 0;
    }    
    50%{
        width: 100%;
    }
    100%{
        width: 0;
    }
}
.pre button:hover{
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.foot{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #fff;
}
.foot h2,a{
    text-decoration: none;
    color: #ffd700;
    animation: sup 1.5s infinite;
    transition: 0.8s;
}
@keyframes sup{
    50%{
        opacity: 0.1;
    }
}