@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Rubik:ital,wght@0,300..900;1,300..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Varela+Round&display=swap');
:root {
        --color-primary: #333;
        --color-on-primary: white;
        --color-background: #000;
        --color-on-background: #f1f5f9;
        --color-border: #475569;
        --color-hover: rgba(255,255,255,0.1);
        --overlay: rgba(0, 0, 0, 0.4);
        --overlay-2: rgba(255,255,255, 0.2);
        
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        
}
body {
        height: 100vh;
        overflow: scroll;
        overflow-x: hidden;
        background-color: var(--color-background);
        color: var(--color-on-background);
        font-family: 'Nunito', sans-serif;
       // margin-left: 32px;
      //  margin-right: 32px;
}

.content {
        margin-left: 32px;
        margin-right: 32px;
                display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
}

.header {
        color: var(--color-on-primary);
        padding: 0 24px;
        height: 60px;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-bottom: 32px;
        border-bottom: 2px solid var(--overlay-2);
}

.header a {
        font-size: 20px;
        text-decoration: none;
        color: white;
        font-weight: bold;
        margin: 0px 10px 0 10px;
}
.header img {
        position: absolute;
        left: 10px
}
.button {
        
  font-weight: 700;
  font-style: normal;
        font-size: 20px;
        
        background-color: #6161AB;
        border: 1px solid #444;
        padding: 10px 20px 10px 20px;
        border-radius: 10px;
        margin-top: 10px;
        cursor: pointer;
        text-decoration: none;
        color: white;
        display: inline-block;
}

.title {
        font-size: 60px;
}




.btn-wrapper {
        display: flex;
        gap: 16px;
        margin: 20px 0;
}

.content h1 {
        font-size: 40px;
}
.maintitle {
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
  font-style: normal;
}





