* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgba(5, 139, 135, 0.978);
    color: #ededed;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background-color: rgba(5, 139, 135, 0.978);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.my-name {
    text-decoration: none;
    font-size: 25px;
    font-weight: 600;
    color: #ededed;

}

.get-a-joke {
    text-decoration: none;
    font-size: 50px;
    font-weight: 600;
    color: #ededed;
    transition: .3s;
    font-family: 'Brush Script MT', cursive;

}

.get-a-joke:hover {
    color: rgba(43, 238, 232, 0.978);
}

.navbar a {
    text-decoration: none;
    font-size: 18px;
    color: #ededed;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover {
    color: rgba(43, 238, 232, 0.978);
}

.joke {
    padding: 0 10%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.joke p {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: rgba(43, 238, 232, 0.978);
}

.joke img {
    min-width: 40vh;
    min-height: 40vh;
    max-width: 100vh;
    font-size: 20px;

    text-align: center;
}

.home {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.home-content {
    max-width: 600px;
}

.profile-img {
    position: inline-flex;
    margin-bottom: 10px;
    width: 100%;
}

.profile-img img {
    height: 250px;
    border-radius: 50%;
}

.home-content h1 {
    font-size: 56px;
    font-weight: 700;
}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: rgba(240, 245, 245, 0.629);
}

.home-content p {
    font-size: 16px;
    margin: 20px 0 40px;
    line-height: 30px;
}

.home-content h5 {
    font-size: 32px;
}

.languages {
    margin: 13px;
}

.languages p {
    line-height: 5px;
    font-weight: 600;
}

.icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 40px;
    width: 180px;
}

.icons a {
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
}

.icons img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.icons .cf-icon {
    border-radius: 0%;
}