@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

body{
    background-image: url(./Frame3.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cs {
    color: white;
    font-size: 50px;
    text-align: center;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    animation: pulse 3s infinite;
    letter-spacing: 9px;
}
@keyframes pulse {
      0% { color: white; }
      50% { color: rgb(134, 134, 134); }
      100% { color: white; }
}
@media (max-width: 900px) {
    .cs {
        font-size: 30px;
    }
}