@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    font-family: 'inter', sans-serif;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

header {
    display: flex;
    width: 70%;
    padding: 15px 0px;
    justify-content: space-around;
    align-items: center;
    height: 8%;
}

main {
  width: 70%;
  height: calc(100% - 8% - 40px - 80px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.main-div {
    height: 97%;
    width: 49%;
    border-radius: 12px;
   
}

.main-div a{
    text-decoration: none;
    color: rgb(53, 53, 53);
    padding: 5px;
    border-radius: 10px;
    display: flex;
    width: calc(100% - 12px);
}
.main-div a:hover {
    background-color: #f0f0f0;
    color: black;
}
nav {
    width: 40%;
    display: flex;
    align-items: center;
}

ul {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    list-style: none;
    padding: 0;
    width: 100%;
}
header a{
    text-decoration: none;
    color: black;
    font-weight: 600;
    padding: 10px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;

}
header a:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}
.resume-button{
    color: white;
    background: black;
    border-radius: 7px;
    margin-left: 12px;
    font-size: 12px;
    font-weight: 500;
}
.resume-button:hover {
    border-radius: 7px;
    background-color: #303030;
}
header h1{
    font-weight: 600;
    font-size: 20px;
    margin: 0;
    color: black;
}
.resume-button svg {
    margin-right: 7px;
    color: white;
}

footer {
    height: 80px;
    width: 70%;
}
footer iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
@media only screen and (max-width: 600px) {
    header {
        width: 90%;
    }
    main {
        width: 90%;
        display: flex;
        flex-direction: column;
    }
    .main-div {
        width: 90%;
        height: 100%;
        margin-bottom: 20px;
    }
    footer {
        width: 90%;
    }
    header h1 {
        font-size: 18px;
    }
}