:root {
    --Green: hsl(75, 94%, 57%);
    --White: hsl(0, 0%, 100%);
    --Grey-700: hsl(0, 0%, 20%);
    --Grey-800: hsl(0, 0%, 12%);
    --Grey-900: hsl(0, 0%, 8%);
}

@font-face {
    font-family: Inter;
    src: url("fonts/Inter-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Inter;
    src: url("fonts/Inter-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal; 
}

@font-face {
    font-family: Inter;
    src: url("fonts/Inter-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal; 
}

html {
    font-size: 14px;
}

body {
    background-color: var(--Grey-900);
    position: relative;
    width: 97vw;
    height: 97vh;
}

h1 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1.7em;
    margin: 7px 0px;
}

img {
    border-radius: 50%;
    width: 76px;
    margin-bottom: 7px; 
}

div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--Grey-800);
    color: var(--White);
    font-family: Inter;
    text-align: center;
    width: 275px;
    padding: 30px;
    border-radius: 10px;
    font-size: 0.9em;
    padding-bottom: 20px;
}

#city {
    margin-top: 5px;
    color: var(--Green);
    font-weight: 600;
}

#quotation {
    margin: 22px 0px;
}

.button {
    display: block;
    padding: 13px;  
    border-radius: 7px;
    margin: 16px 0px;
    background-color: var(--Grey-700);
    border: none;
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.button:hover {
    background-color: var(--Green);
    color: var(--Grey-900);
}

.button:active {
    background-color: var(--Grey-700);
    color: var(--White);
}