

h1{
    background-color: #f5adb3b1;
    padding: 30px;
    font-weight: bold;
    border-radius: 20px;
    font-size: 40px;
    font-family: "times new roman";
    text-decoration: underline;
}

p{
    font-weight: normal;
    padding-left: 30px;
    font-size: 16px;
    border-radius: 20px;
    font-family: "times new roman";
    font-color: #f5cadd;
}

.corner1{
    background-color:aqua;
}

.corner2{
   background-color:rgb(132, 255, 154);
}

.corner3{
   background-color:rgb(255, 177, 224);
}
.corner4{
   font-weight: bold;
   color:rgb(255, 255, 32);
   text-shadow: 2px 2px 8px #000000b5;
   font-size: 22px;
   text-align: center;
   margin: 20px;
}

.frisbee{
    margin-top: 30px;
    margin-left: 30px;
    font-size: 40px;
    animation: rotate 7s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.marquee-container{
    margin: 150px 30%;
}