@charset "UTF-8";
@font-face {
    font-family:'Inter';
    src: url(assets/fonts/Inter-VariableFont_slnt\,wght.ttf);
}

*{
    margin: 0;
    padding: 0;
    font-size: 14px;
    text-align: center;
}

body{
    position: relative;    
    height: 100vh;    
    background-color: hsl(0, 0%, 8%);
    font-family: 'Inter';
    color: hsl(0, 0%, 100%);
}

div#container{
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);   
    width: 330px;     
    background-color: hsl(0, 0%, 12%);
    border-radius: 10px;
}

section#content{
    margin: 25px;
}

img{
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 35px;
}

h1{
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 600;
}

address{
    font-style: normal;
}
address#city{
    margin-bottom: 35px;
    color: hsl(75, 94%, 57%);
    font-weight: 600;    
}

p{
    margin-bottom: 30px;
}

a{
    display: block;
    margin-top: 15px;
    padding: 15px;
    background-color: hsl(0, 0%, 20%);
    border-radius: 10px;
    font-weight: 600;    
    color: inherit;
    text-decoration: none;   
}

a:hover{
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
    font-weight: 700;
}

a:active{
    background-color: hsla(75, 70%, 40%, 0.993);
}

@media screen and (min-width:768px) {
    div#container{
        width: 385px;
    }

    section#content{
        margin: 40px;
    }
}