html {
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    margin:0;
    padding: 0;
    font-family: 'Play', sans-serif;
    font-size: 16px;
    display:flex;
    flex-direction: column;
       
}
* {
    box-sizing: border-box;
}

main {
    display: flex;
    justify-content: space-between;
    
}

a {
    text-decoration: none;
    color: black;
    transition: color 0.5s;
    
}
a:hover {
    color: red;
}

h1 {
    padding: 20px 20px;
    margin: 15px;
}
.container {
    max-width:1000px;
    margin: 0 auto;
    display: flex; 
    justify-content: flex-end;
    padding: 0 20px;
    text-decoration: none;  
    border: 1px solid black;
    background-color: yellowgreen;  
}
.section1 {
    margin: 0;
    width: 100%;
       
}
.nav-list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0 20px;
    margin: 15px 0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;

}
.nav-item {
    padding: 0 20px;
}
.photo {
    display:flex;
    flex-direction: column;
    overflow: hidden;
      
}
.header-info {
    width:80%
    
}
.contacts{
    list-style: none;
    padding: 0 20px;
    margin: 15px;
}


.logo {
    height: 10%;
    width: 10%;
}
.github {
    margin-top: 10px;
    height: 10%;
    width: 10%;
}
.date {
    margin-top: 10px;
}
.footer-content {
    display: flex;
    width: 100%;
    justify-content: space-around
}
.header2 {
    text-align: center;
    
    font-size: 18px;
}
