* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman';
}

body {
    height: 100%;
    width: 100%;
}

nav {
    height: auto;
    width: auto;
    padding: 3%;
}

nav h1 {
    height: fit-content;
    width: fit-content;
    margin: auto;
}

.profile-picture {
    height: auto;
    width: auto;
    text-align: center;
    padding: 1%;
}

.profile-picture img {
    height: 10rem;
    width: auto;
}

.profile-picture img:hover {
    border: 1px solid black;
}

.profile-picture span {
    font-size: 1rem;
    font-weight: bold;
}

.profile-picture #name {
    font-size: 1.5rem;
}

.work {
    height: auto;
    width: auto;
}

.work h3 {
    height: auto;
    width: auto;
    padding-left: 1%;
    margin-top: 1%;
}

.work section {
    height: 40rem;
    width: auto;
    padding: 1%;
}

section iframe {
    height: 100%;
    width: 100%;
}

.socials {
    height: auto;
    width: auto;
}

.socials .buttons {
    height: auto;
    width: auto;
    margin: auto;
    padding: 3%;
    text-align: center;
}

.buttons button {
    border: 1px solid black;
    height: auto;
    width: 70%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    background-color: white;
    color: black;
}

.buttons button:hover {
    background-color: black;
    color: white;
    cursor: pointer;
}

footer {
    height: auto;
    width: auto;
    padding: 3%;
    text-align: center;
}

footer button {
    border: 1px solid black;
    height: auto;
    width: 70%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    background-color: white;
    color: black;
}

footer button:hover {
    background-color: black;
    color: white;
    cursor: pointer;
}