@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Luckiest+Guy&family=Mouse+Memoirs&family=Press+Start+2P&family=Rubik+Broken+Fax&family=Rubik+Vinyl&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap');
.rottenimage{
    width: 50px;
    display: inline-block;
}

body {
    font-family: "Chakra Petch", serif;
    font-weight: 400;
    font-style: normal;
    background-color: rgb(38, 38, 40);
    color:aliceblue;
    text-align: center;
}

.button{
    background-color:rgb(255, 137, 137);
    font: bold 11px Arial;
    text-decoration: none;
    color: #333333;
    padding: 20px 10px 20px 10px;
    margin: 10px;
    border-radius: 8px;
    transition-duration: 0.4s;
}

.button:hover {
    background-color: rgb(137, 255, 161);
    color: #333333;
  }

.question {
    padding-top: 40px;
    padding-bottom: 40px;
}

p{
    padding: 15px;
}

.rottentomatoes{
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgb(50, 50, 50);
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 15px;

    
}

.poster{
    width: 200px;
    padding-right: 20px;
}

.rottenlink {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: white;
}

#home{
    margin-top: 30px;
    display:block;
}

.answername{
    color: rgb(255, 137, 137);
    font-size: 40px;
    font-family: "Berkshire Swash", serif;
    font-weight: 400;
    font-style: normal;
}
h1{
    font-size: 60px;
    font-family: "Berkshire Swash", serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 137, 137);
    animation: title 4s linear infinite forwards;
}

@keyframes title {
    0% {color: rgb(255, 137, 137)}
    50% {color: rgb(137, 255, 161)}
    100% {color: rgb(255, 137, 137)}
  }