@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-container {
    flex: 1;
}

.hero .main-content-container .main-content {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .main-content-container .main-content .container {
    width: 100%;
    height: 70%;
    display: flex;
    border: 7px dotted black;
    border-radius: 32px;
    background-color: white;
}

.container .left-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
}

.container .left-container .left-content {
    margin-left: 16%;
}

.container .left-container .left-content h1 {
    font-size: 61px;
}

.container .left-container .left-content h2 {
    font-size: 31px;
}

.container .right-container {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .right-container img {
    width: 70%;
    border-radius: 50%;
}

.footer {
    height: 10vh;
    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;
    }

    .container .left-container .left-content h1 {
        font-size: 42px;
    }
}