body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.header {
    background-color: rgb(60, 60, 60);
    padding: 20px 150px;
}
.logo {
    color: lime;
    text-decoration: none;
    font-weight: bold;
    margin-right: 100px;
    font-size: 25px;
}
.link {
    font-size: 22px;
    color: white;
    text-decoration: none;
    margin-right: 30px;
}
.main {
    background-color: rgb(220, 220, 220);
    padding: 50px 150px;
}
.title {
    font-size: 45px;
}
.web {
    color: purple;
}
.text {
    color: #777;
    font-size: 24px;
    font-style: italic;
    text-align: justify;
    margin-bottom: 50px;
    line-height: 1;
}
.weather {
    color: green;
}
.list {
    font-size: 23px;
    list-style: square
}
.item {
    margin-bottom: 12px;
}
.item::marker {
    color: blue;
}
.big {
    padding: 50px 150px;
    background-color: beige;
}
.box {
    margin-left: auto;
    width: 180px;
    height: 180px;
    border: 3px solid black;
    
    background: conic-gradient(
        from 90deg, transparent, magenta, aqua, lime
    );
    border-radius: 15px;
}
.footer {
    background-color: black;
    color: white;
    font-size: 22px;
    text-align: center;
    padding: 20px;
}
.company {
    color: gold;
}