.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
@font-face {
    font-family: 'starborn';
    src: url(Starborn.ttf);
}
@font-face {
    font-family: 'papernotes';
    src: url(Papernotes.ttf);
}
body {
            margin: 0;
            font-family: 'papernotes' sans-serif;
            background-image: linear-gradient(rgba(0, 0, 0, 0.884), rgba(0, 0, 0, 0.884)), url("starbg.jpg");
            background-color: #0c0a0da4;
            color: #229eb4;
            font-size: larger;
            font-family: 'papernotes';
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .navbar {
            display: flex;
            align-items: center;
            padding: 10px;
            background: #15111a;
        }
        .navimg {
            height: 80px;
            margin-right: 10px;
        }
        .center-text {
            flex: 1;
            text-align: center;
            font-weight: bold;
            font-size: 35px;
            font-family: 'starborn';
        }
        .material-symbols-outlined {
            font-size: 28px;
            color: #d6c758;
        }
        .content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
    
        button {
            padding: 10px 20px;
            background: #372546;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            font-size: 20px;
            font-family: 'papernotes';
            cursor: pointer;
            transition: background 0.2s;
        }
        button:hover {
            background: #d6d599;
            color: #372546;
        }
   
        .mainlogo {
            height:200px;
            width:auto
        }
        .controls {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 18px;
    justify-content: center;
}
#planetInput{
    width: 100%;
    max-width: 400px;
    border: 2px solid #372546;
    border-radius: 5px;
    background: #110c17;
    color: #ffffff;
    font-family: 'papernotes';
}
@media (max-width: 600px) {
    .navbar img { height: 32px; }
    .center-text { font-size: 1em; }
    .fun-fact { font-size: 1em; }
    button { font-size: 0.95em; }
    .content { padding: 12px 2vw 0 2vw; }
    #planetInput { font-size: 1em; }
    .controls {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}