* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Montserrat", sans-serif;
    min-height: 100vh;
    font-size: 20px;
    padding-bottom: 96px;
}
a {
    color: inherit;
    text-decoration: none;
}

.weather-cont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.content-cont {
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 129px;
}

.favorite-links {
    width: 400px;
    padding: 8px;
}
.favorite-links h2 {
    margin-bottom: 12px;
}
.favorite-links-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.favorite-link {
    display: flex;
    padding: 8px;
    gap: 16px;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.05s ease background-color, 0.05s ease border-color;
}
.favorite-link:hover {
    background-color: #eee;
    border-color: black;
}
.favorite-link-icon-cont {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ccc;
}
.favorite-link-title {
    font-weight: 600;
}
