html,
body,
.container {
    height: 100%;
}

* {
    color: #333333;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bold {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.005em;
}

.normal {
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.005em;
}

.bold.h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.011em;
}

.normal.h3 {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.011em
}

.bold.span {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.006em;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.button {
    cursor: pointer;
    outline: none;
    border: none;
    background-color: hsl(201, 82%, 49%);
    transition: .3s;
    border-radius: 4px;
    height: 32px;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.006em;
}

.button:focus {
    border-color: hsla(0, 0%, 0%, 0.35);
}

.radio-button {
    position: relative;
    outline: none;
}

.radio-button__input {
    opacity: 0;
    outline: none;
    position: absolute;
    z-index: -1;
}

.radio-button__input:checked + .radio-button__content {
    background-color: hsla(201, 82%, 49%, 0.1);
    font-weight: 600;
}

.radio-button__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: .5rem;
    background-color: transparent;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #333333;
    height: 40px;
}

.os {
    width: 24px;
    height: 24px;
}

.direct_download {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    align-items: center;
    text-align: right;
    color: #179DE3;
}
