* {

    font-family: 'Roboto', sans-serif;
    padding: 0%;
    margin: 0%;
}

body {
    /* overflow: hidden; */
}

#iconic {
    border-radius: 50%;
}

header {
    max-width: 100%;
    height: 30px;
    padding: 10px 5%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    background-color: black;
    color: brown;
    left: 0;
    right: 0;
    top: 0;
    position: fixed;
    text-transform: uppercase;
}

.logo {
    position: fixed;
    font-style: italic;
}

nav {
    float: right;
    margin-left: auto;
    padding: 0;
    display: flex;
    gap: 20px;
    position: relative;
}

nav a {
    text-decoration: none;
    color: brown;
}

nav a:hover,
nav a.active {
    color: white;
}

.sect {

    max-width: 100%;
    min-height: 100vh;
    padding: 0% 5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.container {
    width: 50%;
    height: auto;
    flex-wrap: wrap;
}
.container_2 {
    width: 50%;
    height: auto;
    flex-wrap: wrap;
    color: brown;
}
.container_2 h2{
    font-size: 26px;
    text-align: left;
    margin-bottom: 20px;
}
.container_2 h3{
    font-size: 20px;
    text-align: left;
    margin-bottom: 20px;
}
.container_2 ul{
    font-size: 17px;
    text-align: left;
    margin-bottom: 20px;
    margin-left: 50px;
    
    
}

.container_2 p{
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

.left_1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right_1 {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 10px;
}

#profile {
    background-size: cover;
    max-width: 50%;
    border-radius: 50%;
    border: 4px solid brown;
    transition: transform 1.5s;
}

#profile:hover {
    transform: scale(1.1);
    border:4px solid black;
}

.right_1 h6 {
    font-size: 16px;
    color: brown;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.right_1 h2 {
    font-size: 36px;
    color: brown;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;

}

.right_1 h3 {
    font-size: 20px;
    color: brown;
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.button {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;

}

.btn {
    width: 150px;
    height: 25px;
    background-color: brown;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
}
.btn:hover{
    background-color:black;
    transform: scale(1.1);
}

.socialmedia a {
    color: brown;
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid brown;
    border-radius: 50%;

}
.socialmedia a:hover{
    color:white;
    background-color: black;
    border: black;
    transform: scale(1.1);
}

footer {
    max-width: 100%;
    padding: 10px 5%;
    height: 30px;
    background-color: black;
    bottom: 0%;
    left: 0%;
    right: 0%;
    position: fixed;
    display: flex;
    flex-direction: row;
    color: brown;
    font-size: 16px;
    justify-content: space-between;
    align-items: center;
}

.menu {
    cursor: pointer;
    float: right;
    margin-left: auto;
    padding: 0;
    position: relative;
    display: none;

}


.bar1,
.bar2,
.bar3 {
    width: 30px;
    height: 2px;
    background-color: brown;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 8px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -8px) rotate(45deg);
}

.cont {
    width: 60%;
    border: 5px solid brown;
    padding: 30px 30px;
    border-radius: 20px;
}


form {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
}

form input {
    height: 30px;
    border-radius: 10px;
    padding: 2px 10px;
    border: 3px solid brown;
}

form h1 {
    height: 30px;
    border-radius: 10px;
    padding: 2px 10px;
    color: brown;
    text-align: center;
    margin-bottom: 20px;
}

form textarea {
    height: 100px;
    border-radius: 10px;
    padding: 20px 30px;
    border: 3px solid brown;
    margin-bottom: 20px;
}

form button {
    height: 40px;
    background-color: brown;
    font-size: 25px;
    font-weight: bold;
    border-radius: 10px;
    padding: 2px 10px;
    border: none;
    color: white;
}

form button:hover {
    height: 40px;
    color: white;
    background-color: black;
}

@media only screen and (max-width:500px) {

    /* For mobile phones: */
    body {
        overflow: scroll;
    }

    .nav_m {
        width: 100%;
        margin: 0;
        top: 50%;
        height: 250px;
        max-height: 100vh;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.5);
        position: relative;
    }

    footer {
        flex-direction: column;
    }

    .menu {
        display: block;
        
    }

    .name {
        display: none;
    }

    .sect {
        flex-direction: column;
    }

    .container {
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .container_2 {
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: justify;        
    }

    .button {
        justify-content: center;
        align-items: center;
    }

    #profile {
        max-width: 70%;
    }

    .cont {
        width: 80%;
        max-width: 80%;
    }
}