@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #000080; /* Navy blue */
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    color: #F5DEB3; /* Beige/Yellow like NAVY font */
}

#scrapy {
    font-size: 64px;
    font-weight: bold;
    animation: spin 4s linear infinite;
}

.subtext {
    font-size: 20px;
    margin-top: 10px;
    color: white;
}

.subtext a {
    color: #fff;
    text-decoration: underline; /* optional: adds underline */
}

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