@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&display=swap');

* {
    font-family: "Kode Mono", monospace;
    box-sizing: border-box;
    color: #140726;
}

a {
    text-decoration: none;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    margin: 0;
    padding: 0;
    background-color: #eeeeee;
}

.header-container {
    display: flex;
    justify-content: center;
    border-top: 4px solid #140726;
    border-bottom: 4px solid #140726;
    background-color: #9F70FD;
}

.header-container ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    width: 80%;
}

.header-container ul * {
    flex: 1;
    text-align: center;
}

.header-container ul *:hover {
    background-color: #7F27FF;
}

.header-container ul li {
    font-size: 25px;
    font-weight: 700;
}

.header-container ul li:hover {
    color: white;
    cursor: pointer;
}

.header-container ul li.name {
    color: #FDBF60;
}

.header-container ul li.name:hover {
    color: #FDBF60;
    color: white;
}


.hero .main-content {
    margin: 0 auto;
    margin-top: 4%;
    flex: auto;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-content img {
    width: 50%;
    border-radius: 10px;
    border: 10px solid #140726;
}

.main-content .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    margin-bottom: 10%;
}

.text h1 {
    margin-top: 0;
    font-size: 61px;
}

.text p {
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.text a {
    padding: 8px 32px;
    width: 150px;
    height: 66px;
    border-radius: 10px;
    border: solid 2px black;
    background-color: transparent;
    font-size: 25px;
    color: black;
}

.text a:hover {
    background-color: black;
    border-color: black;
    color: white;
    cursor: pointer;
}

.footer {
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

@media only screen and (max-width:600px) {
    img {
        display: none;
    }

    .header-container ul li {
        font-size: 8px;
        font-weight: 700;
    }

    .text h1 {
        margin-top: 0;
        font-size: 40px;
    }
}