@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;
}

h1 {
    font-size: 61px;
}

h2 {
    margin: 0;
}

a {
    text-decoration: none;
}

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

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

.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;
    display: flex;
    justify-content: center;
    align-items: center;
}

.links-container{
    display: flex;
    justify-content: space-between;
    width: 50%;
}

.links-container img{
    width: 20%;
    height: auto;
}

@media only screen and (max-width:600px) {

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

    .main-content-container .contact-form-container {
        width: 100%;
    }

    form textarea {
        height: 100px !important;
        max-height: 100px !important;
    }

    .links-container{
        flex-direction: column;
        align-items: space-between;
        height: 50%;
    }

    .links-container img{
        width: 40%;
    }

}